diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-10-26 09:18:40 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-10-26 09:56:30 +0100 |
commit | 759c585e0cc0a86fd918a1fb8ebf0a9a498e804a (patch) | |
tree | 38c3a959fefb97536dc47fa99d7b03575a4e7a83 /forms | |
parent | 07385355dbd83d164c32ba278f4d221da6fd407d (diff) |
coverity#1374271 Uncaught exception
Change-Id: I043cd76ae0da65cac09130f0e761266fd8730be6
Diffstat (limited to 'forms')
-rw-r--r-- | forms/source/component/formcontrolfont.cxx | 2 | ||||
-rw-r--r-- | forms/source/inc/formcontrolfont.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/forms/source/component/formcontrolfont.cxx b/forms/source/component/formcontrolfont.cxx index 2eb56370d41b..59ff701401de 100644 --- a/forms/source/component/formcontrolfont.cxx +++ b/forms/source/component/formcontrolfont.cxx @@ -249,7 +249,7 @@ namespace frm bool FontControlModel::convertFastPropertyValue( Any& _rConvertedValue, Any& _rOldValue, - sal_Int32 _nHandle, const Any& _rValue ) throw( IllegalArgumentException ) + sal_Int32 _nHandle, const Any& _rValue ) throw( IllegalArgumentException, RuntimeException, std::exception ) { bool bModified = false; switch( _nHandle ) diff --git a/forms/source/inc/formcontrolfont.hxx b/forms/source/inc/formcontrolfont.hxx index 6999c7ef5bc2..b1161a7b19d6 100644 --- a/forms/source/inc/formcontrolfont.hxx +++ b/forms/source/inc/formcontrolfont.hxx @@ -73,7 +73,7 @@ namespace frm css::uno::Sequence< css::beans::Property >& /* [out] */ _rProps ); void getFastPropertyValue ( css::uno::Any& _rValue, sal_Int32 _nHandle ) const; - bool convertFastPropertyValue ( css::uno::Any& _rConvertedValue, css::uno::Any& _rOldValue, sal_Int32 _nHandle, const css::uno::Any& _rValue ) throw( css::lang::IllegalArgumentException ); + bool convertFastPropertyValue ( css::uno::Any& _rConvertedValue, css::uno::Any& _rOldValue, sal_Int32 _nHandle, const css::uno::Any& _rValue ) throw( css::lang::IllegalArgumentException, css::uno::RuntimeException, std::exception ); void setFastPropertyValue_NoBroadcast_impl( ::cppu::OPropertySetHelper & rBase, void (::cppu::OPropertySetHelper::*pSet)( sal_Int32, css::uno::Any const&), |