]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/thread.cpp
Restore proper set and kill focus handling for user pane controls under wxMac.
[wxWidgets.git] / src / mac / carbon / thread.cpp
index ef01ae9b20db1bd8a1c252b3c0d6346dff79ee77..db758b346fabeac7e41ee47a6fbff9d8166f76cc 100644 (file)
@@ -38,7 +38,7 @@
 #include <Threads.h>
 #include "wx/mac/uma.h"
 #include "wx/mac/macnotfy.h"
-#include "Timer.h"
+#include <Timer.h>
 #endif
 
 #define INFINITE 0xFFFFFFFF
@@ -524,7 +524,11 @@ bool wxThread::IsMain()
 
 void wxThread::Yield()
 {
+#if TARGET_API_MAC_OSX
+   CFRunLoopRunInMode( kCFRunLoopDefaultMode , 0 , true ) ;
+#endif
     ::YieldToAnyThread() ;
+
 }
 
 void wxThread::Sleep(unsigned long milliseconds)
@@ -542,7 +546,7 @@ void wxThread::Sleep(unsigned long milliseconds)
         YieldToAnyThread();
         Microseconds(&now);
         msnow = (now.hi * 4294967296.0 + now.lo) ;
-    } while( msstart - msnow < mssleep );
+    } while( msnow - msstart < mssleep );
 }
 
 int wxThread::GetCPUCount()