summaryrefslogtreecommitdiff
path: root/sfx2/source/appl/helpdispatch.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-25 21:31:58 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-26 18:22:20 +0100
commit5e21a413c788f839a66d9e4c14e745ed18058db8 (patch)
treed4451246461346a425ad6f796e08bf1514cdd942 /sfx2/source/appl/helpdispatch.cxx
parent6fc2bd0094a23aafadeef3f4a8c2803d621a588d (diff)
cppuhelper: retrofit std::exception into overriding exception specs
Change-Id: I56e32131b7991ee9948ce46765632eb823d463b3
Diffstat (limited to 'sfx2/source/appl/helpdispatch.cxx')
-rw-r--r--sfx2/source/appl/helpdispatch.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/appl/helpdispatch.cxx b/sfx2/source/appl/helpdispatch.cxx
index e837e7864a60..f9fd4f7bd565 100644
--- a/sfx2/source/appl/helpdispatch.cxx
+++ b/sfx2/source/appl/helpdispatch.cxx
@@ -52,7 +52,7 @@ HelpDispatch_Impl::~HelpDispatch_Impl()
void SAL_CALL HelpDispatch_Impl::dispatch(
- const URL& aURL, const Sequence< PropertyValue >& aArgs ) throw( RuntimeException )
+ const URL& aURL, const Sequence< PropertyValue >& aArgs ) throw( RuntimeException, std::exception )
{
DBG_ASSERT( m_xRealDispatch.is(), "invalid dispatch" );
@@ -92,7 +92,7 @@ void SAL_CALL HelpDispatch_Impl::dispatch(
void SAL_CALL HelpDispatch_Impl::addStatusListener(
- const Reference< XStatusListener >& xControl, const URL& aURL ) throw( RuntimeException )
+ const Reference< XStatusListener >& xControl, const URL& aURL ) throw( RuntimeException, std::exception )
{
DBG_ASSERT( m_xRealDispatch.is(), "invalid dispatch" );
@@ -103,7 +103,7 @@ void SAL_CALL HelpDispatch_Impl::addStatusListener(
void SAL_CALL HelpDispatch_Impl::removeStatusListener(
- const Reference< XStatusListener >& xControl, const URL& aURL ) throw( RuntimeException )
+ const Reference< XStatusListener >& xControl, const URL& aURL ) throw( RuntimeException, std::exception )
{
DBG_ASSERT( m_xRealDispatch.is(), "invalid dispatch" );