]> git.saurik.com Git - wxWidgets.git/commitdiff
reverting to idle handling
authorStefan Csomor <csomor@advancedconcepts.ch>
Mon, 6 Jun 2011 21:12:14 +0000 (21:12 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Mon, 6 Jun 2011 21:12:14 +0000 (21:12 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67870 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/osx/core/evtloop_cf.cpp

index f83729f1c963bb0cae00dd1633c50b19c809bbfd..03a71cb9c3192cb3e6ffdec18b6b0c836eeae6a1 100644 (file)
@@ -179,25 +179,30 @@ void wxCFEventLoop::CommonModeObserverCallBack(CFRunLoopObserverRef WXUNUSED(obs
 
     if ( activity & kCFRunLoopBeforeWaiting )
     {
 
     if ( activity & kCFRunLoopBeforeWaiting )
     {
+        if ( ProcessIdle() )
+        {
+            WakeUp();
+        }
+        else
+        {
 #if wxUSE_THREADS
 #if wxUSE_THREADS
-        wxMutexGuiLeaveOrEnter();
+            wxMutexGuiLeaveOrEnter();
 #endif
 #endif
+        }
     }
 }
 
 void wxCFEventLoop::DefaultModeObserverCallBack(CFRunLoopObserverRef WXUNUSED(observer), int activity)
 {
     }
 }
 
 void wxCFEventLoop::DefaultModeObserverCallBack(CFRunLoopObserverRef WXUNUSED(observer), int activity)
 {
+    /*
     if ( activity & kCFRunLoopBeforeTimers )
     {
     }
     
     if ( activity & kCFRunLoopBeforeWaiting )
     {
     if ( activity & kCFRunLoopBeforeTimers )
     {
     }
     
     if ( activity & kCFRunLoopBeforeWaiting )
     {
-        if ( ProcessIdle() )
-        {
-            WakeUp();
-        }
     }
     }
+    */
 }
 
 
 }