From: Robin Dunn Date: Fri, 21 Jan 2005 20:25:38 +0000 (+0000) Subject: Added setter to wxMoveEvent X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d7f03cae7fecdc892f50842a7218a78f44860653 Added setter to wxMoveEvent git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31554 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/event.h b/include/wx/event.h index fc5cf8f04f..6399b743d2 100644 --- a/include/wx/event.h +++ b/include/wx/event.h @@ -1126,6 +1126,7 @@ public: { m_eventType = wxEVT_MOVING; m_id = id; } wxPoint GetPosition() const { return m_pos; } + void SetPosition(const wxPoint& pos) { m_pos = pos; } wxRect GetRect() const { return m_rect; } void SetRect(wxRect rect) { m_rect = rect; }