Add a SetSize to wxSizeEvent

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66209 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2010-11-19 07:51:15 +00:00
parent 7dbd713731
commit b702a83386

View File

@@ -1691,6 +1691,7 @@ public:
{ m_eventType = wxEVT_SIZING; m_id = id; } { m_eventType = wxEVT_SIZING; m_id = id; }
wxSize GetSize() const { return m_size; } wxSize GetSize() const { return m_size; }
void SetSize(wxSize size) { m_size = size; }
wxRect GetRect() const { return m_rect; } wxRect GetRect() const { return m_rect; }
void SetRect(const wxRect& rect) { m_rect = rect; } void SetRect(const wxRect& rect) { m_rect = rect; }