diff options
| author | 2019-07-18 01:31:43 -0400 | |
|---|---|---|
| committer | 2019-07-18 01:31:43 -0400 | |
| commit | a916009d4b29995ea8ad61ad47a51c2ee1fa80bc (patch) | |
| tree | f53f459caa6868bda7c3f6dae0d8f30f19325af3 /src/lib/platform/XWindowsEventQueueBuffer.h | |
| parent | 68a36b3b67ec82cdd3f77e88e40d1043cbab5000 (diff) | |
New upstream version 2.3.0+dfsgupstream/2.3.0+dfsg
Diffstat (limited to 'src/lib/platform/XWindowsEventQueueBuffer.h')
| -rw-r--r-- | src/lib/platform/XWindowsEventQueueBuffer.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/platform/XWindowsEventQueueBuffer.h b/src/lib/platform/XWindowsEventQueueBuffer.h index 07f3b3a..e49b282 100644 --- a/src/lib/platform/XWindowsEventQueueBuffer.h +++ b/src/lib/platform/XWindowsEventQueueBuffer.h @@ -21,6 +21,7 @@ #include "mt/Mutex.h" #include "base/IEventQueueBuffer.h" #include "common/stdvector.h" +#include "XWindowsImpl.h" #if X_DISPLAY_MISSING # error X11 is required to build barrier @@ -33,7 +34,8 @@ class IEventQueue; //! Event queue buffer for X11 class XWindowsEventQueueBuffer : public IEventQueueBuffer { public: - XWindowsEventQueueBuffer(Display*, Window, IEventQueue* events); + XWindowsEventQueueBuffer(IXWindowsImpl* impl, Display*, Window, + IEventQueue* events); virtual ~XWindowsEventQueueBuffer(); // IEventQueueBuffer overrides @@ -51,6 +53,7 @@ private: private: typedef std::vector<XEvent> EventList; + IXWindowsImpl* m_impl; Mutex m_mutex; Display* m_display; |
