summaryrefslogtreecommitdiffstats
path: root/include/comphelper/accessibleeventnotifier.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-06-05 08:07:32 +0200
committerNoel Grandin <noel@peralex.com>2014-06-05 08:17:46 +0200
commit41066fef1ca94723615838fd521d08c5d37aac5b (patch)
tree96a9d0de50b748359676cf43b879ba6d3406af0f /include/comphelper/accessibleeventnotifier.hxx
parent...and avoid SolarMutex deadlock when joining FactoryLoader threads (diff)
downloadcore-41066fef1ca94723615838fd521d08c5d37aac5b.tar.gz
core-41066fef1ca94723615838fd521d08c5d37aac5b.zip
comphelper: remove SAL_THROW macro
Change-Id: I692f1213c4bf42a84fae119f513e609d8874bf0c
Diffstat (limited to 'include/comphelper/accessibleeventnotifier.hxx')
-rw-r--r--include/comphelper/accessibleeventnotifier.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/comphelper/accessibleeventnotifier.hxx b/include/comphelper/accessibleeventnotifier.hxx
index dfe188741749..96b1831e59d8 100644
--- a/include/comphelper/accessibleeventnotifier.hxx
+++ b/include/comphelper/accessibleeventnotifier.hxx
@@ -83,7 +83,7 @@ namespace comphelper
static void revokeClientNotifyDisposing(
const TClientId _nClient,
const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& _rxEventSource
- ) SAL_THROW( ( ) );
+ );
/** registers a listener for the given client
@@ -95,7 +95,7 @@ namespace comphelper
static sal_Int32 addEventListener(
const TClientId _nClient,
const ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleEventListener >& _rxListener
- ) SAL_THROW( ( ) );
+ );
/** revokes a listener for the given client
@@ -107,7 +107,7 @@ namespace comphelper
static sal_Int32 removeEventListener(
const TClientId _nClient,
const ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleEventListener >& _rxListener
- ) SAL_THROW( ( ) );
+ );
/** adds an event, which is to be braodcasted, to the queue
@@ -117,7 +117,7 @@ namespace comphelper
static void addEvent(
const TClientId _nClient,
const ::com::sun::star::accessibility::AccessibleEventObject& _rEvent
- ) SAL_THROW( ( ) );
+ );
};