X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7309deeafcab43d8e9fc1b8a8901d9ad79d3b251..2aaf17c2237b5799f9b8875996b93950a2679ad9:/include/wx/event.h?ds=sidebyside diff --git a/include/wx/event.h b/include/wx/event.h index 17d67521a9..29100ac661 100644 --- a/include/wx/event.h +++ b/include/wx/event.h @@ -754,7 +754,6 @@ public: *ypos = m_y; } -#ifndef __WIN16__ void GetPosition(long *xpos, long *ypos) const { if (xpos) @@ -762,7 +761,6 @@ public: if (ypos) *ypos = (long)m_y; } -#endif // Find the position of the event wxPoint GetPosition() const { return wxPoint(m_x, m_y); } @@ -905,13 +903,11 @@ public: if (ypos) *ypos = m_y; } -#ifndef __WIN16__ void GetPosition(long *xpos, long *ypos) const { if (xpos) *xpos = (long)m_x; if (ypos) *ypos = (long)m_y; } -#endif wxPoint GetPosition() const { return wxPoint(m_x, m_y); }