Kaydet (Commit) b35f3dfb authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#706240 Uncaught exception

Change-Id: Ie31f5e1ff74ff8b9f35d7ce08e1f02a780375890
üst 7dda48d5
......@@ -496,6 +496,8 @@ sal_Bool SfxLibraryContainer::isModified()
for( sal_Int32 i = 0 ; i < nNameCount ; i++ )
{
OUString aName = pNames[ i ];
try
{
SfxLibrary* pImplLib = getImplLib( aName );
if( pImplLib->isModified() )
{
......@@ -513,6 +515,10 @@ sal_Bool SfxLibraryContainer::isModified()
}
}
}
catch(const css::container::NoSuchElementException&)
{
}
}
return sal_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