#5620 Convert OSXScreen into Objective C++
This commit is contained in:
parent
d1396c9767
commit
df88faaad8
|
@ -344,4 +344,6 @@ private:
|
||||||
Mutex* m_carbonLoopMutex;
|
Mutex* m_carbonLoopMutex;
|
||||||
CondVar<bool>* m_carbonLoopReady;
|
CondVar<bool>* m_carbonLoopReady;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
class OSXScreenImpl* m_impl;
|
||||||
};
|
};
|
||||||
|
|
|
@ -112,7 +112,8 @@ OSXScreen::OSXScreen(IEventQueue* events, bool isPrimary, bool autoShowHideCurso
|
||||||
m_lastSingleClickYCursor(0),
|
m_lastSingleClickYCursor(0),
|
||||||
m_autoShowHideCursor(autoShowHideCursor),
|
m_autoShowHideCursor(autoShowHideCursor),
|
||||||
m_events(events),
|
m_events(events),
|
||||||
m_getDropTargetThread(NULL)
|
m_getDropTargetThread(NULL),
|
||||||
|
m_impl(NULL)
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
m_displayID = CGMainDisplayID();
|
m_displayID = CGMainDisplayID();
|
Loading…
Reference in New Issue