summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-06-27 20:48:33 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-06-28 13:23:00 +0100
commitb978b50105bb7bfb013d88566c2ad1ff7a24e871 (patch)
treee8a34fc2c0385bee301d97f4c0519eed356c23eb /sfx2
parent7ed80b196990e274a4ba6aa7fba665e97779a61f (diff)
coverity#1308501 Uncaught exception
Change-Id: I5143cb99f67a2de3a4d4555b3a43075cd928fe14
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/bastyp/fltlst.cxx2
-rw-r--r--sfx2/source/bastyp/fltlst.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/bastyp/fltlst.cxx b/sfx2/source/bastyp/fltlst.cxx
index 3b66b1d9915a..b60cf35987b4 100644
--- a/sfx2/source/bastyp/fltlst.cxx
+++ b/sfx2/source/bastyp/fltlst.cxx
@@ -97,7 +97,7 @@ SfxFilterListener::~SfxFilterListener()
{
}
-void SAL_CALL SfxFilterListener::refreshed( const lang::EventObject& aSource ) throw( uno::RuntimeException )
+void SAL_CALL SfxFilterListener::refreshed( const lang::EventObject& aSource ) throw( uno::RuntimeException, std::exception )
{
SolarMutexGuard aGuard;
uno::Reference< util::XRefreshable > xContainer( aSource.Source, uno::UNO_QUERY );
diff --git a/sfx2/source/bastyp/fltlst.hxx b/sfx2/source/bastyp/fltlst.hxx
index a78c6a72a82b..8c94677daf83 100644
--- a/sfx2/source/bastyp/fltlst.hxx
+++ b/sfx2/source/bastyp/fltlst.hxx
@@ -42,7 +42,7 @@ class SfxFilterListener
public:
// XRefreshListener
- void SAL_CALL refreshed( const ::com::sun::star::lang::EventObject& aSource ) throw( ::com::sun::star::uno::RuntimeException );
+ void SAL_CALL refreshed( const ::com::sun::star::lang::EventObject& aSource ) throw( ::com::sun::star::uno::RuntimeException, std::exception );
// XEventListener
void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& aSource ) throw( ::com::sun::star::uno::RuntimeException );