]> 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 f4f90abd40b7794b3905ce911678a6425b729c77..b226494baeda90d84f79747ac687a71de697b435 100644 (file)
@@ -46,7 +46,6 @@ public:
         if( wxIsBusy() )
         {
             wxSetCursor( wxBusyCursor::GetStoredCursor() );
-            wxYield();
         }
     }
     ~wxBusyCursorSuspender()
@@ -54,7 +53,6 @@ public:
         if( wxIsBusy() )
         {
             wxSetCursor( wxBusyCursor::GetBusyCursor() );
-            wxYield();
         }
     }
 };