diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-02-12 11:18:24 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-02-12 11:27:58 +0000 |
commit | 1445679455095081383a50eba5ce418a62952ee8 (patch) | |
tree | 550a1f08357a55d7d4dea7b6d4cef0465637c626 /include/canvas | |
parent | 06ce26c082698502dfd2254768f9bc2b075068c8 (diff) |
coverity#1269592 Uncaught exception
and
coverity#1269577 Uncaught exception
Change-Id: Ib8a61f8738d35cf5cb7cfa32d91d241f5c8d52d4
Diffstat (limited to 'include/canvas')
-rw-r--r-- | include/canvas/base/graphicdevicebase.hxx | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/include/canvas/base/graphicdevicebase.hxx b/include/canvas/base/graphicdevicebase.hxx index b6f5036a8e83..f2216d44fa71 100644 --- a/include/canvas/base/graphicdevicebase.hxx +++ b/include/canvas/base/graphicdevicebase.hxx @@ -296,18 +296,20 @@ namespace canvas virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName, const css::uno::Any& aValue ) throw (css::beans::UnknownPropertyException, - css::beans::PropertyVetoException, - css::lang::IllegalArgumentException, - css::lang::WrappedTargetException, - css::uno::RuntimeException) SAL_OVERRIDE + css::beans::PropertyVetoException, + css::lang::IllegalArgumentException, + css::lang::WrappedTargetException, + css::uno::RuntimeException, + std::exception) SAL_OVERRIDE { MutexType aGuard( BaseType::m_aMutex ); maPropHelper.setPropertyValue( aPropertyName, aValue ); } virtual css::uno::Any SAL_CALL getPropertyValue( const OUString& aPropertyName ) throw (css::beans::UnknownPropertyException, - css::lang::WrappedTargetException, - css::uno::RuntimeException) SAL_OVERRIDE + css::lang::WrappedTargetException, + css::uno::RuntimeException, + std::exception) SAL_OVERRIDE { MutexType aGuard( BaseType::m_aMutex ); return maPropHelper.getPropertyValue( aPropertyName ); |