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

iprevent violation of exception spec

Change-Id: I1f638ae3a2e88e0cadaab0046ef087fe77e16b06
üst d44b58be
......@@ -2434,7 +2434,12 @@ void SAL_CALL SfxLibraryContainer::loadLibrary( const OUString& Name )
aFile = aElementName;
aFile += ".";
aFile += maLibElementFileExtension;
xElementStream = xLibraryStor->openStreamElement( aFile, embed::ElementModes::READ );
try
{
xElementStream = xLibraryStor->openStreamElement( aFile, embed::ElementModes::READ );
}
catch(const uno::Exception& )
{}
}
if ( xElementStream.is() )
......
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