diff options
-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. |