diff --git a/src/lib/arch/win32/ArchMiscWindows.cpp b/src/lib/arch/win32/ArchMiscWindows.cpp index 2b2c9632c..dcd4eb9e4 100644 --- a/src/lib/arch/win32/ArchMiscWindows.cpp +++ b/src/lib/arch/win32/ArchMiscWindows.cpp @@ -75,11 +75,6 @@ void ArchMiscWindows::daemonFailed(int result) ArchDaemonWindows::daemonFailed(result); } -UINT ArchMiscWindows::getDaemonQuitMessage() -{ - return ArchDaemonWindows::getDaemonQuitMessage(); -} - HKEY ArchMiscWindows::openKey(HKEY key, const TCHAR *keyName) { return openKey(key, keyName, false); diff --git a/src/lib/arch/win32/ArchMiscWindows.h b/src/lib/arch/win32/ArchMiscWindows.h index 27b3257ab..af155b65c 100644 --- a/src/lib/arch/win32/ArchMiscWindows.h +++ b/src/lib/arch/win32/ArchMiscWindows.h @@ -53,12 +53,6 @@ public: */ static void daemonFailed(int result); - //! Get daemon quit message - /*! - Delegates to ArchDaemonWindows. - */ - static UINT getDaemonQuitMessage(); - //! Open and return a registry key, closing the parent key static HKEY openKey(HKEY parent, const TCHAR *child); diff --git a/src/lib/platform/MSWindowsEventQueueBuffer.cpp b/src/lib/platform/MSWindowsEventQueueBuffer.cpp index 9f2ebb29a..e5e697c45 100644 --- a/src/lib/platform/MSWindowsEventQueueBuffer.cpp +++ b/src/lib/platform/MSWindowsEventQueueBuffer.cpp @@ -8,7 +8,7 @@ #include "platform/MSWindowsEventQueueBuffer.h" -#include "arch/win32/ArchMiscWindows.h" +#include "arch/win32/ArchDaemonWindows.h" #include "base/IEventQueue.h" // @@ -24,7 +24,7 @@ MSWindowsEventQueueBuffer::MSWindowsEventQueueBuffer(IEventQueue *events) : m_ev m_userEvent = RegisterWindowMessage(L"DESKFLOW_USER_EVENT"); // get message type for daemon quit - m_daemonQuit = ArchMiscWindows::getDaemonQuitMessage(); + m_daemonQuit = ArchDaemonWindows::getDaemonQuitMessage(); // make sure this thread has a message queue MSG dummy;