Kaydet (Commit) c5453441 authored tarafından Markus Mohrhard's avatar Markus Mohrhard

we need to catch the exception here, fdo#57451

Change-Id: I203aa640e7d4373f3a090a4988c28c6059b93064
üst 144a8586
......@@ -129,7 +129,14 @@ bool ExcelFilter::importDocument() throw()
WorkbookGlobalsRef xBookGlob = WorkbookHelper::constructGlobals( *this );
if ( xBookGlob.get() && importFragment( new WorkbookFragment( *xBookGlob, aWorkbookPath ) ) )
{
importDocumentProperties();
try
{
importDocumentProperties();
}
catch( const Exception& e )
{
SAL_WARN("sc", "exception when importing document properties " << e.Message);
}
return true;
}
return false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment