diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-24 12:59:20 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-24 13:03:51 +0100 |
commit | 96e6f65907e68d72d61acf6777d5f615c27ed696 (patch) | |
tree | e8902c4f09dee0edb37c635a9c0b8857c22726d4 /include | |
parent | f3ba1de5e55e56113050752ef0676cdb880f417e (diff) |
coverity#983964 Uncaught exception
Change-Id: Ieb298e45512ab4c0384ea2d7ef6adcc4adc39923
Diffstat (limited to 'include')
-rw-r--r-- | include/comphelper/ChainablePropertySet.hxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/comphelper/ChainablePropertySet.hxx b/include/comphelper/ChainablePropertySet.hxx index 2d28c08649bb..127abccb6f20 100644 --- a/include/comphelper/ChainablePropertySet.hxx +++ b/include/comphelper/ChainablePropertySet.hxx @@ -79,7 +79,11 @@ namespace comphelper css::uno::RuntimeException) = 0; virtual void _preGetValues () - 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 _getSingleValue( const comphelper::PropertyInfo & rInfo, ::com::sun::star::uno::Any & rValue ) throw (css::beans::UnknownPropertyException, css::lang::WrappedTargetException, |