From b702a83386524814eefced93e26e4551e857e41b Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 19 Nov 2010 07:51:15 +0000 Subject: [PATCH] Add a SetSize to wxSizeEvent git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66209 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/event.h | 1 + 1 file changed, 1 insertion(+) 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; } -- 2.45.2