git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18698 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2003-01-12 22:30:51 +00:00
parent 29f82345df
commit b2697d4205

View File

@@ -782,10 +782,12 @@ public:
m_x(x), m_y(y), m_cursor() m_x(x), m_y(y), m_cursor()
{ } { }
wxSetCursorEvent(const wxSetCursorEvent & event) : wxEvent(event) wxSetCursorEvent(const wxSetCursorEvent & event)
{ m_x = event.m_x; : wxEvent(event),
m_y = event.m_y; m_x(event.m_x),
m_cursor = event.m_cursor; } m_y(event.m_y),
m_cursor(event.m_cursor)
{ }
wxCoord GetX() const { return m_x; } wxCoord GetX() const { return m_x; }
wxCoord GetY() const { return m_y; } wxCoord GetY() const { return m_y; }