summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-05-24 12:44:42 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-05-24 13:03:50 +0100
commit9329cd7fbef877e32d65f046e19004186c2625da (patch)
treebb93f567a5dab5136019bbf81e2528b730c21d15 /include
parentcoverity#983986 Uncaught exception (diff)
downloadcore-9329cd7fbef877e32d65f046e19004186c2625da.tar.gz
core-9329cd7fbef877e32d65f046e19004186c2625da.zip
coverity#983969 Uncaught exception
Change-Id: I56c8145f45da3f3265ddcc22a011ec6111b0a8ca
Diffstat (limited to 'include')
-rw-r--r--include/comphelper/ChainablePropertySet.hxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/comphelper/ChainablePropertySet.hxx b/include/comphelper/ChainablePropertySet.hxx
index 8c7c35fa8e5d..95f832d2fb22 100644
--- a/include/comphelper/ChainablePropertySet.hxx
+++ b/include/comphelper/ChainablePropertySet.hxx
@@ -64,7 +64,11 @@ namespace comphelper
::com::sun::star::uno::Reference < com::sun::star::beans::XPropertySetInfo > mxInfo;
virtual void _preSetValues ()
- throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException ) = 0;
+ throw (css::beans::UnknownPropertyException,
+ css::beans::PropertyVetoException,
+ css::lang::IllegalArgumentException,
+ css::lang::WrappedTargetException,
+ css::uno::RuntimeException) = 0;
virtual void _setSingleValue( const comphelper::PropertyInfo & rInfo, const ::com::sun::star::uno::Any &rValue )
throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException ) = 0;
virtual void _postSetValues ()