From 9974dbcbee4bbadccf20953ac729f843e34adc51 Mon Sep 17 00:00:00 2001 From: Muthu Subramanian K Date: Mon, 22 Nov 2010 15:55:48 +0530 Subject: [PATCH] Missing call to importDocumentProperties() n#655194 --- oox/source/xls/excelfilter.cxx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/oox/source/xls/excelfilter.cxx b/oox/source/xls/excelfilter.cxx index 1093b5cc7bfe..783ff493c268 100644 --- a/oox/source/xls/excelfilter.cxx +++ b/oox/source/xls/excelfilter.cxx @@ -129,7 +129,12 @@ bool ExcelFilter::importDocument() throw() return false; WorkbookHelperRoot aHelper( *this ); - return aHelper.isValid() && importFragment( new OoxWorkbookFragment( aHelper, aWorkbookPath ) ); + if( aHelper.isValid() && importFragment( new OoxWorkbookFragment( aHelper, aWorkbookPath ) ) ) + { + importDocumentProperties(); + return true; + } + return false; } bool ExcelFilter::exportDocument() throw()