]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cursor.h
wxFileName::Get/SetTimes() finally seem to work under Windows
[wxWidgets.git] / include / wx / cursor.h
index f4f90abd40b7794b3905ce911678a6425b729c77..fbb4ab7b2ec59ec03972fd3a20ddfc716b7d655c 100644 (file)
@@ -7,10 +7,10 @@
 #include "wx/motif/cursor.h"
 #elif defined(__WXGTK__)
 #include "wx/gtk/cursor.h"
+#elif defined(__WXX11__)
+#include "wx/x11/cursor.h"
 #elif defined(__WXMGL__)
 #include "wx/mgl/cursor.h"
-#elif defined(__WXQT__)
-#include "wx/qt/cursor.h"
 #elif defined(__WXMAC__)
 #include "wx/mac/cursor.h"
 #elif defined(__WXPM__)
@@ -46,7 +46,6 @@ public:
         if( wxIsBusy() )
         {
             wxSetCursor( wxBusyCursor::GetStoredCursor() );
-            wxYield();
         }
     }
     ~wxBusyCursorSuspender()
@@ -54,7 +53,6 @@ public:
         if( wxIsBusy() )
         {
             wxSetCursor( wxBusyCursor::GetBusyCursor() );
-            wxYield();
         }
     }
 };