summaryrefslogtreecommitdiff
path: root/fpicker/source/win32/filepicker/asynceventnotifier.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'fpicker/source/win32/filepicker/asynceventnotifier.cxx')
-rw-r--r--fpicker/source/win32/filepicker/asynceventnotifier.cxx48
1 files changed, 0 insertions, 48 deletions
diff --git a/fpicker/source/win32/filepicker/asynceventnotifier.cxx b/fpicker/source/win32/filepicker/asynceventnotifier.cxx
index 8ec54626006f..08b61f8a181c 100644
--- a/fpicker/source/win32/filepicker/asynceventnotifier.cxx
+++ b/fpicker/source/win32/filepicker/asynceventnotifier.cxx
@@ -28,16 +28,10 @@
#include "SolarMutex.hxx"
-
-
-
using namespace com::sun::star;
using ::com::sun::star::ui::dialogs::XFilePickerListener;
-
-
-
CAsyncEventNotifier::CAsyncEventNotifier(cppu::OBroadcastHelper& rBroadcastHelper) :
m_hThread(0),
m_bRun(false),
@@ -60,9 +54,6 @@ CAsyncEventNotifier::CAsyncEventNotifier(cppu::OBroadcastHelper& rBroadcastHelpe
}
-
-
-
CAsyncEventNotifier::~CAsyncEventNotifier()
{
OSL_ENSURE(0 == m_hThread,"Thread not stopped, destroying this instance leads to desaster");
@@ -72,9 +63,6 @@ CAsyncEventNotifier::~CAsyncEventNotifier()
}
-
-
-
void SAL_CALL CAsyncEventNotifier::addListener(const uno::Type& aType ,
const uno::Reference< uno::XInterface >& xListener)
{
@@ -88,9 +76,6 @@ void SAL_CALL CAsyncEventNotifier::addListener(const uno::Type&
}
-
-
-
void SAL_CALL CAsyncEventNotifier::removeListener(const uno::Type& aType ,
const uno::Reference< uno::XInterface >& xListener)
{
@@ -101,9 +86,6 @@ void SAL_CALL CAsyncEventNotifier::removeListener(const uno::Type&
}
-
-
-
bool SAL_CALL CAsyncEventNotifier::startup(bool bCreateSuspended)
{
osl::MutexGuard aGuard(m_Mutex);
@@ -133,9 +115,6 @@ bool SAL_CALL CAsyncEventNotifier::startup(bool bCreateSuspended)
}
-
-
-
void SAL_CALL CAsyncEventNotifier::shutdown()
{
OSL_PRECOND(GetCurrentThreadId() != m_ThreadId,
@@ -171,27 +150,18 @@ void SAL_CALL CAsyncEventNotifier::shutdown()
}
-
-
-
void CAsyncEventNotifier::suspend()
{
ResetEvent(m_ResumeNotifying);
}
-
-
-
void CAsyncEventNotifier::resume()
{
SetEvent(m_ResumeNotifying);
}
-
-
-
void SAL_CALL CAsyncEventNotifier::notifyEvent(CEventNotification* EventNotification)
{
osl::MutexGuard aGuard(m_Mutex);
@@ -206,9 +176,6 @@ void SAL_CALL CAsyncEventNotifier::notifyEvent(CEventNotification* EventNotifica
}
-
-
-
size_t SAL_CALL CAsyncEventNotifier::getEventListSize()
{
osl::MutexGuard aGuard(m_Mutex);
@@ -216,9 +183,6 @@ size_t SAL_CALL CAsyncEventNotifier::getEventListSize()
}
-
-
-
void SAL_CALL CAsyncEventNotifier::resetNotifyEvent()
{
osl::MutexGuard aGuard(m_Mutex);
@@ -227,9 +191,6 @@ void SAL_CALL CAsyncEventNotifier::resetNotifyEvent()
}
-
-
-
CEventNotification* SAL_CALL CAsyncEventNotifier::getNextEventRecord()
{
osl::MutexGuard aGuard(m_Mutex);
@@ -237,9 +198,6 @@ CEventNotification* SAL_CALL CAsyncEventNotifier::getNextEventRecord()
}
-
-
-
void SAL_CALL CAsyncEventNotifier::removeNextEventRecord()
{
osl::MutexGuard aGuard(m_Mutex);
@@ -247,9 +205,6 @@ void SAL_CALL CAsyncEventNotifier::removeNextEventRecord()
}
-
-
-
void SAL_CALL CAsyncEventNotifier::run()
{
while (m_bRun)
@@ -293,9 +248,6 @@ void SAL_CALL CAsyncEventNotifier::run()
}
-
-
-
unsigned int WINAPI CAsyncEventNotifier::ThreadProc(LPVOID pParam)
{
osl_setThreadName("fpicker CAsyncEventNotifier::run()");