]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/utilsgui.cpp
Sizing fixes according to patch #1523304.
[wxWidgets.git] / src / msw / utilsgui.cpp
index 4afb88bd1e443015331d06d5705526f58eb985ef..7926bdb3307ca5410804b6aba71e7100a25478bf 100644 (file)
@@ -157,7 +157,7 @@ extern HCURSOR wxGetCurrentBusyCursor()
 }
 
 // Set the cursor to the busy cursor for all windows
-void wxBeginBusyCursor(wxCursor *cursor)
+void wxBeginBusyCursor(const wxCursor *cursor)
 {
     if ( gs_wxBusyCursorCount++ == 0 )
     {
@@ -257,7 +257,7 @@ void wxGetMousePosition( int* x, int* y )
     GetCursorPos( & pt );
     if ( x ) *x = pt.x;
     if ( y ) *y = pt.y;
-};
+}
 
 // Return true if we have a colour display
 bool wxColourDisplay()