Missing call to importDocumentProperties() n#655194

This commit is contained in:
Muthu Subramanian K 2010-11-22 15:55:48 +05:30
parent 03a4326ac0
commit 9974dbcbee

View file

@ -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()