summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMuthu Subramanian K <sumuthu@novell.com>2010-11-22 15:55:48 +0530
committerMuthu Subramanian K <sumuthu@novell.com>2010-11-22 15:55:48 +0530
commit9974dbcbee4bbadccf20953ac729f843e34adc51 (patch)
tree9af782ce1ae7de0a429724a3c430b5173a8ef6e7
parent03a4326ac0a694327b6a1bd0150d917b5a5c6e4f (diff)
Missing call to importDocumentProperties() n#655194
-rw-r--r--oox/source/xls/excelfilter.cxx7
1 files changed, 6 insertions, 1 deletions
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()