Merge remote branch 'origin/libreoffice-3-3'

This commit is contained in:
Jan Holesovsky 2010-11-25 14:26:56 +01:00
commit 73f23cbae7

View file

@ -131,7 +131,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()