]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/utilsgui.cpp
Enable variadic macros for VC9 and later.
[wxWidgets.git] / src / msw / utilsgui.cpp
index 6eb4e851487fca547a5547789458c4d170fb4790..7c44c41a186d65b73173c4759a82e0634b1cf151 100644 (file)
@@ -113,7 +113,7 @@ bool wxCheckForInterrupt(wxWindow *wnd)
 void wxGetMousePosition( int* x, int* y )
 {
     POINT pt;
-    GetCursorPos( & pt );
+    wxGetCursorPosMSW( & pt );
     if ( x ) *x = pt.x;
     if ( y ) *y = pt.y;
 }