diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-25 10:21:43 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-25 10:45:24 +0000 |
commit | ff8d78ff892567523a2a5f6bd8056f5350343fdc (patch) | |
tree | afb7062c3ce5c3596caa1243b556af73ba487add /sc/inc | |
parent | 02b9b512f0071c46ae648482e9240a9c4c80d9ac (diff) |
coverity#737721 Uncaught exception
Change-Id: Ibc5e4532a451829a6e6113c42d9013017205ba70
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/viewuno.hxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sc/inc/viewuno.hxx b/sc/inc/viewuno.hxx index 61762c32cf14..b4402e6b63ca 100644 --- a/sc/inc/viewuno.hxx +++ b/sc/inc/viewuno.hxx @@ -271,9 +271,10 @@ public: virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertyChangeListener >& xListener ) - throw(::com::sun::star::beans::UnknownPropertyException, - ::com::sun::star::lang::WrappedTargetException, - ::com::sun::star::uno::RuntimeException); + throw (::com::sun::star::beans::UnknownPropertyException, + ::com::sun::star::lang::WrappedTargetException, + ::com::sun::star::uno::RuntimeException, + std::exception); virtual void SAL_CALL removePropertyChangeListener( const OUString& aPropertyName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertyChangeListener >& aListener ) |