From: Robin Dunn Date: Fri, 19 Nov 2010 07:51:15 +0000 (+0000) Subject: Add a SetSize to wxSizeEvent X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b702a83386524814eefced93e26e4551e857e41b Add a SetSize to wxSizeEvent git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66209 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/event.h b/include/wx/event.h index 4aa6e97a94..dae8470ac9 100644 --- a/include/wx/event.h +++ b/include/wx/event.h @@ -1691,6 +1691,7 @@ public: { m_eventType = wxEVT_SIZING; m_id = id; } wxSize GetSize() const { return m_size; } + void SetSize(wxSize size) { m_size = size; } wxRect GetRect() const { return m_rect; } void SetRect(const wxRect& rect) { m_rect = rect; }