summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-10-27 21:34:57 +0100
committerCaolán McNamara <caolanm@redhat.com>2016-10-27 21:34:57 +0100
commit6e14070332bd3920c49e8802fcd48099cda4b190 (patch)
treecd43f449ee3d5477dbf7c3e631b515b92f9eb7d1 /forms
parentd164f7e93e874cdda4d61d042287f8b66c6452a8 (diff)
coverity#1374316 Uncaught exception
Change-Id: I32f872d74f167604de006f1d77a9219a37011bfa
Diffstat (limited to 'forms')
-rw-r--r--forms/source/component/Hidden.cxx2
-rw-r--r--forms/source/component/Hidden.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/forms/source/component/Hidden.cxx b/forms/source/component/Hidden.cxx
index 2816bfdbb12e..92953dd9e2f9 100644
--- a/forms/source/component/Hidden.cxx
+++ b/forms/source/component/Hidden.cxx
@@ -90,7 +90,7 @@ void OHiddenModel::setFastPropertyValue_NoBroadcast(sal_Int32 _nHandle, const An
sal_Bool OHiddenModel::convertFastPropertyValue(
Any& _rConvertedValue, Any& _rOldValue, sal_Int32 _nHandle, const Any& _rValue)
- throw (IllegalArgumentException)
+ throw (IllegalArgumentException, RuntimeException, std::exception)
{
bool bModified(false);
switch (_nHandle)
diff --git a/forms/source/component/Hidden.hxx b/forms/source/component/Hidden.hxx
index 091ffb89c3e6..28952caebcf1 100644
--- a/forms/source/component/Hidden.hxx
+++ b/forms/source/component/Hidden.hxx
@@ -40,7 +40,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) override;
+ throw (css::lang::IllegalArgumentException, css::uno::RuntimeException, std::exception) override;
// XServiceInfo
OUString SAL_CALL getImplementationName()