]> git.saurik.com Git - wxWidgets.git/blobdiff - src/cocoa/evtloop.mm
[ 1502010 ] Cast to wrong type.
[wxWidgets.git] / src / cocoa / evtloop.mm
index 7e122cb12a02f0aa58a06afb60309dfa6a5868d5..add5528e947aca0685ca803a963e545ebb6f742f 100644 (file)
@@ -48,8 +48,6 @@ private:
 // wxEventLoop running and exiting
 // ----------------------------------------------------------------------------
 
-wxEventLoop *wxEventLoopBase::ms_activeLoop = NULL;
-
 wxEventLoop::~wxEventLoop()
 {
     wxASSERT_MSG( !m_impl, _T("should have been deleted in Run()") );
@@ -60,8 +58,7 @@ int wxEventLoop::Run()
     // event loops are not recursive, you need to create another loop!
     wxCHECK_MSG( !IsRunning(), -1, _T("can't reenter a message loop") );
 
-    wxEventLoop *oldLoop = ms_activeLoop;
-    ms_activeLoop = this;
+    wxEventLoopActivator activate(this);
 
     m_impl = new wxEventLoopImpl;
 
@@ -71,8 +68,6 @@ int wxEventLoop::Run()
     delete m_impl;
     m_impl = NULL;
 
-    ms_activeLoop = oldLoop;
-
     return exitcode;
 }