]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/control.cpp
implemented wxIsDebuggerRunning() for Win32
[wxWidgets.git] / src / msw / control.cpp
index b83a78ae327976cb1025e82ee23679c6fa8fe8f2..a74b5721cad60c4421f9028ef09d1c0f398b1f35 100644 (file)
@@ -222,8 +222,8 @@ wxSize wxControl::GetBestSpinerSize(const bool is_vertical) const
 #if defined(__SMARTPHONE__) && defined(__WXWINCE__)
                     0,GetCharHeight()
 #else
-                    GetSystemMetrics(is_vertical ? SM_CXVSCROLL : SM_CXHSCROLL),
-                    GetSystemMetrics(is_vertical ? SM_CYVSCROLL : SM_CYHSCROLL)
+                    ::GetSystemMetrics(is_vertical ? SM_CXVSCROLL : SM_CXHSCROLL),
+                    ::GetSystemMetrics(is_vertical ? SM_CYVSCROLL : SM_CYHSCROLL)
 #endif
     );