Merge remote branch 'origin/libreoffice-3-3'
This commit is contained in:
commit
73f23cbae7
1 changed files with 6 additions and 1 deletions
|
@ -131,7 +131,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()
|
||||
|
|
Loading…
Reference in a new issue