]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/evtloop.cpp
Remove my binary compatibility stuff from HEAD. Patch #1367014 used for reference.
[wxWidgets.git] / src / os2 / evtloop.cpp
index 8ca8d5c0c02d5406b1b0ec45e093136bd0a87a07..6d72bb674c1916e52fe09a9e353bb16561e9956f 100644 (file)
 // headers
 // ----------------------------------------------------------------------------
 
-#ifdef __GNUG__
-    #pragma implementation "evtloop.h"
-#endif
-
 // For compilers that support precompilation, includes "wx.h".
 #include "wx/wxprec.h"
 
@@ -191,8 +187,7 @@ bool wxEventLoopImpl::PreProcessMessage(QMSG *pMsg)
            for(pWnd = pWndThis; pWnd; pWnd = pWnd->GetParent() )
            {
                if((bRc = pWnd->OS2TranslateMessage((WXMSG*)pMsg)) == TRUE)
-                  return TRUE;
-              //  break;
+                   break;
            // stop at first top level window, i.e. don't try to process the
            // key strokes originating in a dialog using the accelerators of
            // the parent frame - this doesn't make much sense
@@ -228,7 +223,7 @@ bool wxEventLoopImpl::SendIdleMessage()
 // wxEventLoop implementation
 // ============================================================================
 
-wxEventLoop *wxEventLoop::ms_activeLoop = NULL;
+wxEventLoop *wxEventLoopBase::ms_activeLoop = NULL;
 
 // ----------------------------------------------------------------------------
 // wxEventLoop running and exiting
@@ -239,11 +234,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
@@ -297,7 +287,7 @@ int wxEventLoop::Run()
         while ( !Pending() && m_impl->SendIdleMessage() )
        {
            wxTheApp->HandleSockets();
-           wxUsleep(10);
+           wxMilliSleep(10);
        }
 
         wxTheApp->HandleSockets();
@@ -310,7 +300,7 @@ int wxEventLoop::Run()
            }
        }
         else
-            wxUsleep(10);
+            wxMilliSleep(10);
     }
 
     return m_impl->GetExitCode();