[Libreoffice-commits] core.git: framework/inc framework/source

Caolán McNamara caolanm at redhat.com
Thu Oct 27 20:32:41 UTC 2016


 framework/inc/classes/actiontriggerseparatorpropertyset.hxx        |    2 +-
 framework/source/fwe/classes/actiontriggerseparatorpropertyset.cxx |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit d164f7e93e874cdda4d61d042287f8b66c6452a8
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Thu Oct 27 21:31:44 2016 +0100

    coverity#1374317 Uncaught exception
    
    Change-Id: I37a7b2f12cec522e116ccf4b1aa550ad2cba14ea

diff --git a/framework/inc/classes/actiontriggerseparatorpropertyset.hxx b/framework/inc/classes/actiontriggerseparatorpropertyset.hxx
index 6e389c9..4c6696a 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 49720d6..53b3e0e 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.


More information about the Libreoffice-commits mailing list