summaryrefslogtreecommitdiff
path: root/comphelper/source/misc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-02-16 18:59:38 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-02-16 19:01:27 +0100
commit4a98b359d8ba392362ac6a40692912b58a3b1544 (patch)
tree04fe411345fb6d712bb386ddd7575c831de9d65e /comphelper/source/misc
parent1cc602e09b8b6ddaac8ddf526383ed28a1e42bd5 (diff)
Clean up AsyncEventNotifier interface
Diffstat (limited to 'comphelper/source/misc')
-rw-r--r--comphelper/source/misc/asyncnotification.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/comphelper/source/misc/asyncnotification.cxx b/comphelper/source/misc/asyncnotification.cxx
index 7e225ed78c0a..cf8b6286d97b 100644
--- a/comphelper/source/misc/asyncnotification.cxx
+++ b/comphelper/source/misc/asyncnotification.cxx
@@ -171,7 +171,7 @@ namespace comphelper
::osl::MutexGuard aGuard( m_pImpl->aMutex );
// remember the termination request
- AsyncEventNotifier_TBASE::terminate();
+ Thread::terminate();
// awake the thread
m_pImpl->aPendingActions.set();
@@ -251,7 +251,7 @@ namespace comphelper
//--------------------------------------------------------------------
void SAL_CALL AsyncEventNotifier::onTerminated()
{
- AsyncEventNotifier_TBASE::onTerminated();
+ Thread::onTerminated();
// when we were started (->run), we aquired ourself. Release this now
// that we were finally terminated
release();