]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/event.h
fixes for wxFontMapper endless recursion
[wxWidgets.git] / include / wx / event.h
index 10d5eb7970b105eb05755f9b0e4c92c04c766070..0d90ca6b44cdf868aed8b67a569bccd574b706b4 100644 (file)
@@ -613,13 +613,15 @@ public:
             *ypos = m_y;
     }
 
-    void GetPosition(int *xpos, int *ypos) const
+#ifndef __WIN16__
+    void GetPosition(long *xpos, long *ypos) const
     {
         if (xpos)
-            *xpos = (int)m_x; 
+            *xpos = (long)m_x; 
         if (ypos)
-            *ypos = (int)m_y;
+            *ypos = (long)m_y;
     }
+#endif
 
     // Find the position of the event
     wxPoint GetPosition() const { return wxPoint(m_x, m_y); }
@@ -694,11 +696,13 @@ public:
         if (ypos) *ypos = m_y;
     }
 
-    void GetPosition(int *xpos, int *ypos) const
+#ifndef __WIN16__
+    void GetPosition(long *xpos, long *ypos) const
     {
-        if (xpos) *xpos = (int)m_x; 
-        if (ypos) *ypos = (int)m_y;
+        if (xpos) *xpos = (long)m_x; 
+        if (ypos) *ypos = (long)m_y;
     }
+#endif
 
     wxPoint GetPosition() const
         { return wxPoint(m_x, m_y); }