]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/evtloop.cpp
Assert correction.
[wxWidgets.git] / src / os2 / evtloop.cpp
index 4e3a1172889f9836db0e62aaaae58debab16891e..38d378623b67351364f4817961d81d44661f78d4 100644 (file)
@@ -227,7 +227,7 @@ bool wxEventLoopImpl::SendIdleMessage()
 // wxEventLoop implementation
 // ============================================================================
 
-wxEventLoop *wxEventLoop::ms_activeLoop = NULL;
+wxEventLoop *wxEventLoopBase::ms_activeLoop = NULL;
 
 // ----------------------------------------------------------------------------
 // wxEventLoop running and exiting
@@ -238,11 +238,6 @@ wxEventLoop::~wxEventLoop()
     wxASSERT_MSG( !m_impl, _T("should have been deleted in Run()") );
 }
 
-bool wxEventLoop::IsRunning() const
-{
-    return m_impl != NULL;
-}
-
 //////////////////////////////////////////////////////////////////////////////
 //
 // Keep trying to process messages until WM_QUIT
@@ -296,7 +291,7 @@ int wxEventLoop::Run()
         while ( !Pending() && m_impl->SendIdleMessage() )
        {
            wxTheApp->HandleSockets();
-           wxUsleep(10);
+           wxMilliSleep(10);
        }
 
         wxTheApp->HandleSockets();
@@ -309,7 +304,7 @@ int wxEventLoop::Run()
            }
        }
         else
-            wxUsleep(10);
+            wxMilliSleep(10);
     }
 
     return m_impl->GetExitCode();