diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-10-27 21:31:44 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-10-27 21:32:18 +0100 |
commit | d164f7e93e874cdda4d61d042287f8b66c6452a8 (patch) | |
tree | 55bf8ef641a8f9ff88f943b25519935d4143031b /framework | |
parent | bc3f952e66fe0a44044b4b101be3e96e20a670e6 (diff) |
coverity#1374317 Uncaught exception
Change-Id: I37a7b2f12cec522e116ccf4b1aa550ad2cba14ea
Diffstat (limited to 'framework')
-rw-r--r-- | framework/inc/classes/actiontriggerseparatorpropertyset.hxx | 2 | ||||
-rw-r--r-- | framework/source/fwe/classes/actiontriggerseparatorpropertyset.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/framework/inc/classes/actiontriggerseparatorpropertyset.hxx b/framework/inc/classes/actiontriggerseparatorpropertyset.hxx index 6e389c99e6fc..4c6696a7dbf7 100644 --- a/framework/inc/classes/actiontriggerseparatorpropertyset.hxx +++ b/framework/inc/classes/actiontriggerseparatorpropertyset.hxx @@ -70,7 +70,7 @@ class ActionTriggerSeparatorPropertySet : private cppu::BaseMutex, css::uno::Any& aOldValue, sal_Int32 nHandle, const css::uno::Any& aValue ) - throw( css::lang::IllegalArgumentException ) override; + throw( css::lang::IllegalArgumentException, css::uno::RuntimeException, std::exception ) override; virtual void SAL_CALL setFastPropertyValue_NoBroadcast( sal_Int32 nHandle, const css::uno::Any& aValue ) throw( css::uno::Exception, std::exception ) override; diff --git a/framework/source/fwe/classes/actiontriggerseparatorpropertyset.cxx b/framework/source/fwe/classes/actiontriggerseparatorpropertyset.cxx index 49720d60bd4a..53b3e0e559c8 100644 --- a/framework/source/fwe/classes/actiontriggerseparatorpropertyset.cxx +++ b/framework/source/fwe/classes/actiontriggerseparatorpropertyset.cxx @@ -151,7 +151,7 @@ sal_Bool SAL_CALL ActionTriggerSeparatorPropertySet::convertFastPropertyValue( Any& aOldValue, sal_Int32 nHandle, const Any& aValue ) -throw( IllegalArgumentException ) + throw( IllegalArgumentException, RuntimeException, std::exception ) { // Check, if value of property will changed in method "setFastPropertyValue_NoBroadcast()". // Return sal_True, if changed - else return sal_False. |