diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-10-26 09:17:21 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-10-26 09:56:30 +0100 |
commit | 07385355dbd83d164c32ba278f4d221da6fd407d (patch) | |
tree | e29ded9261d5b6f9a3fda977ac4b48e365ac1620 /forms/source | |
parent | ae68c27457a1641d8a0569025e676b67219a3378 (diff) |
coverity#1374270 Uncaught exception
Change-Id: Ia29b644748f00aa7dc31af9ccc510976d8646241
Diffstat (limited to 'forms/source')
-rw-r--r-- | forms/source/component/clickableimage.cxx | 2 | ||||
-rw-r--r-- | forms/source/component/clickableimage.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/forms/source/component/clickableimage.cxx b/forms/source/component/clickableimage.cxx index b736520e79e3..54f0963b79a4 100644 --- a/forms/source/component/clickableimage.cxx +++ b/forms/source/component/clickableimage.cxx @@ -646,7 +646,7 @@ namespace frm sal_Bool OClickableImageBaseModel::convertFastPropertyValue(Any& rConvertedValue, Any& rOldValue, sal_Int32 nHandle, const Any& rValue) - throw( IllegalArgumentException ) + throw( IllegalArgumentException, RuntimeException, std::exception ) { switch (nHandle) { diff --git a/forms/source/component/clickableimage.hxx b/forms/source/component/clickableimage.hxx index ba0d752a8a57..3408b6abb1e9 100644 --- a/forms/source/component/clickableimage.hxx +++ b/forms/source/component/clickableimage.hxx @@ -115,7 +115,7 @@ namespace frm virtual void SAL_CALL setFastPropertyValue_NoBroadcast(sal_Int32 nHandle, const css::uno::Any& rValue) throw (css::uno::Exception, std::exception) override; virtual sal_Bool SAL_CALL convertFastPropertyValue(css::uno::Any& rConvertedValue, css::uno::Any& rOldValue, sal_Int32 nHandle, const css::uno::Any& rValue ) - throw(css::lang::IllegalArgumentException) override; + throw(css::lang::IllegalArgumentException, css::uno::RuntimeException, std::exception) override; using ::cppu::OPropertySetHelper::getFastPropertyValue; |