]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cursor.h
Removed semi-colons off the end of two macro statement lines so that compilation...
[wxWidgets.git] / include / wx / cursor.h
index e4cf1106dfbdfcd82a3cba18c9e1dbf31e1ed230..b226494baeda90d84f79747ac687a71de697b435 100644 (file)
@@ -7,6 +7,8 @@
 #include "wx/motif/cursor.h"
 #elif defined(__WXGTK__)
 #include "wx/gtk/cursor.h"
+#elif defined(__WXMGL__)
+#include "wx/mgl/cursor.h"
 #elif defined(__WXQT__)
 #include "wx/qt/cursor.h"
 #elif defined(__WXMAC__)
@@ -44,7 +46,6 @@ public:
         if( wxIsBusy() )
         {
             wxSetCursor( wxBusyCursor::GetStoredCursor() );
-            wxYield();
         }
     }
     ~wxBusyCursorSuspender()
@@ -52,7 +53,6 @@ public:
         if( wxIsBusy() )
         {
             wxSetCursor( wxBusyCursor::GetBusyCursor() );
-            wxYield();
         }
     }
 };