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

coverity#706540 Uncaught exception

Change-Id: I9dabd74824ec7cffe5371ed8be202ad27fecc80d
üst 99bada2f
......@@ -643,7 +643,19 @@ void SAL_CALL OControlModel::setParent(const Reference< XInterface >& _rxParent)
OUString SAL_CALL OControlModel::getName() throw(RuntimeException, std::exception)
{
OUString aReturn;
try
{
OPropertySetHelper::getFastPropertyValue(PROPERTY_ID_NAME) >>= aReturn;
}
catch (const css::beans::UnknownPropertyException&)
{
css::uno::Any a(cppu::getCaughtException());
throw WrappedTargetRuntimeException(
"OControlModel::getName",
*const_cast< OControlModel* >( this ),
a
);
}
return aReturn;
}
......
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