]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/frame.cpp
minor bug fixes
[wxWidgets.git] / src / msw / frame.cpp
index ffa5812de36377f270cca3439f6c149ae6c2837a..aded67d34f85bf74e7239b622d4fedfd4004a485 100644 (file)
@@ -705,9 +705,9 @@ wxPoint wxFrame::GetClientAreaOrigin() const
     return pt;
 }
 
     return pt;
 }
 
-void wxFrame::ScreenToClient(int *x, int *y) const
+void wxFrame::DoScreenToClient(int *x, int *y) const
 {
 {
-    wxWindow::ScreenToClient(x, y);
+    wxWindow::DoScreenToClient(x, y);
 
     // We may be faking the client origin.
     // So a window that's really at (0, 30) may appear
 
     // We may be faking the client origin.
     // So a window that's really at (0, 30) may appear
@@ -717,7 +717,7 @@ void wxFrame::ScreenToClient(int *x, int *y) const
     *y -= pt.y;
 }
 
     *y -= pt.y;
 }
 
-void wxFrame::ClientToScreen(int *x, int *y) const
+void wxFrame::DoClientToScreen(int *x, int *y) const
 {
     // We may be faking the client origin.
     // So a window that's really at (0, 30) may appear
 {
     // We may be faking the client origin.
     // So a window that's really at (0, 30) may appear
@@ -726,7 +726,7 @@ void wxFrame::ClientToScreen(int *x, int *y) const
     *x += pt1.x;
     *y += pt1.y;
 
     *x += pt1.x;
     *y += pt1.y;
 
-    wxWindow::ClientToScreen(x, y);
+    wxWindow::DoClientToScreen(x, y);
 }
 
 #if wxUSE_TOOLBAR
 }
 
 #if wxUSE_TOOLBAR