Missing call to importDocumentProperties() n#655194
This commit is contained in:
parent
03a4326ac0
commit
9974dbcbee
1 changed files with 6 additions and 1 deletions
|
@ -129,7 +129,12 @@ bool ExcelFilter::importDocument() throw()
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
WorkbookHelperRoot aHelper( *this );
|
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()
|
bool ExcelFilter::exportDocument() throw()
|
||||||
|
|
Loading…
Reference in a new issue