Kaydet (Commit) 5d5564fa authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1374282 Uncaught exception

Change-Id: I1b31825ec27d2395ca030ca79b6c932b7814d901
üst b23e9791
...@@ -90,7 +90,9 @@ class ActionTriggerSeparatorPropertySet : private cppu::BaseMutex, ...@@ -90,7 +90,9 @@ class ActionTriggerSeparatorPropertySet : private cppu::BaseMutex,
bool impl_tryToChangeProperty( sal_Int16 aCurrentValue , bool impl_tryToChangeProperty( sal_Int16 aCurrentValue ,
const css::uno::Any& aNewValue , const css::uno::Any& aNewValue ,
css::uno::Any& aOldValue , css::uno::Any& aOldValue ,
css::uno::Any& aConvertedValue ) throw( css::lang::IllegalArgumentException ); css::uno::Any& aConvertedValue ) throw( css::lang::IllegalArgumentException,
css::uno::RuntimeException,
std::exception );
// members // members
......
...@@ -267,7 +267,7 @@ bool ActionTriggerSeparatorPropertySet::impl_tryToChangeProperty( ...@@ -267,7 +267,7 @@ bool ActionTriggerSeparatorPropertySet::impl_tryToChangeProperty(
const Any& aNewValue , const Any& aNewValue ,
Any& aOldValue , Any& aOldValue ,
Any& aConvertedValue ) Any& aConvertedValue )
throw( IllegalArgumentException ) throw( IllegalArgumentException, RuntimeException, std::exception )
{ {
// Set default return value if method failed. // Set default return value if method failed.
bool bReturn = false; bool bReturn = false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment