]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/window.cpp
1. some more tests in console
[wxWidgets.git] / src / mac / window.cpp
index fe831d3d08291e2fe51395551dd4546f34fc9db4..d2696fe6e0bdc955993352efa87ec9265ea9200c 100644 (file)
@@ -2369,7 +2369,8 @@ wxWindow* wxFindWindowAtPointer(wxPoint& pt)
 // Get the current mouse position.
 wxPoint wxGetMousePosition()
 {
-    wxFAIL_MSG(_("Not implemented"));
-    return wxPoint;
+    int x, y;
+    wxGetMousePosition(& x, & y);
+    return wxPoint(x, y);
 }