diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-25 13:52:12 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-25 20:19:12 +0100 |
commit | dc21c527c54dbbb9996d16791bec5d2aff6504d8 (patch) | |
tree | 57c4a5188d4659e30627bd8ce92b342f727136c9 /include | |
parent | 69c8acdcb4805c2c0217633e0b0b874c88d11433 (diff) |
coverity#706281 Uncaught exception
Change-Id: I6bc7ea330834054a20f89bdb0ac7cc9ccd9ca4aa
Diffstat (limited to 'include')
-rw-r--r-- | include/comphelper/MasterPropertySet.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/comphelper/MasterPropertySet.hxx b/include/comphelper/MasterPropertySet.hxx index ff3170b891ad..865ed36f2c5f 100644 --- a/include/comphelper/MasterPropertySet.hxx +++ b/include/comphelper/MasterPropertySet.hxx @@ -122,7 +122,7 @@ namespace comphelper virtual void SAL_CALL setPropertyValues( const ::com::sun::star::uno::Sequence< OUString >& aPropertyNames, const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aValues ) throw (css::beans::UnknownPropertyException, css::beans::PropertyVetoException, css::lang::IllegalArgumentException, css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > SAL_CALL getPropertyValues( const ::com::sun::star::uno::Sequence< OUString >& aPropertyNames ) - throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::beans::UnknownPropertyException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; virtual void SAL_CALL addPropertiesChangeListener( const ::com::sun::star::uno::Sequence< OUString >& aPropertyNames, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertiesChangeListener >& xListener ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; virtual void SAL_CALL removePropertiesChangeListener( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertiesChangeListener >& xListener ) |