diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-10-27 21:37:42 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-10-27 21:37:42 +0100 |
commit | db337150cd89c36f181ff5689fcd5c8a45e84829 (patch) | |
tree | f0dd95d2bb49917c3add8acc2e5ae894364f8022 /forms | |
parent | 6e14070332bd3920c49e8802fcd48099cda4b190 (diff) |
coverity#1374315 Uncaught exception
Change-Id: Id7a01c652d1d11675b87ee732ff40ddd76de6236
Diffstat (limited to 'forms')
-rw-r--r-- | forms/source/component/ListBox.cxx | 2 | ||||
-rw-r--r-- | forms/source/component/ListBox.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/forms/source/component/ListBox.cxx b/forms/source/component/ListBox.cxx index e40dea985742..fcfe5c8de178 100644 --- a/forms/source/component/ListBox.cxx +++ b/forms/source/component/ListBox.cxx @@ -390,7 +390,7 @@ namespace frm sal_Bool OListBoxModel::convertFastPropertyValue( Any& _rConvertedValue, Any& _rOldValue, sal_Int32 _nHandle, const Any& _rValue) - throw (IllegalArgumentException, std::exception) + throw (IllegalArgumentException, RuntimeException, std::exception) { bool bModified(false); switch (_nHandle) diff --git a/forms/source/component/ListBox.hxx b/forms/source/component/ListBox.hxx index 0df57d608356..ec18eb9fa36d 100644 --- a/forms/source/component/ListBox.hxx +++ b/forms/source/component/ListBox.hxx @@ -146,7 +146,7 @@ public: 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, std::exception) override; + throw (css::lang::IllegalArgumentException, css::uno::RuntimeException, std::exception) override; protected: static const ::connectivity::ORowSetValue s_aEmptyValue; |