summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-23 08:51:19 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-23 09:40:03 +0100
commit0bab690a4ad883e0872601bc4965bb9c0668fefb (patch)
treea404224517207fbc081300dc2ef03a39672365d1 /include
parent06bd4e49ead2b7b195bfb1bd6ddccc29f7e6628b (diff)
coverity#707317 Uncaught exception
Change-Id: I8ff4820f03311cb059da5e515d31d08239ac732d
Diffstat (limited to 'include')
-rw-r--r--include/comphelper/MasterPropertySet.hxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/comphelper/MasterPropertySet.hxx b/include/comphelper/MasterPropertySet.hxx
index 0444a6d71617..f0d8e0ced5e8 100644
--- a/include/comphelper/MasterPropertySet.hxx
+++ b/include/comphelper/MasterPropertySet.hxx
@@ -69,7 +69,9 @@ namespace comphelper
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;
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;
+ throw (css::beans::UnknownPropertyException, css::beans::PropertyVetoException,
+ css::lang::IllegalArgumentException, css::lang::WrappedTargetException,
+ css::uno::RuntimeException, std::exception) = 0;
virtual void _postSetValues ()
throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException ) = 0;