From 706e8aa34db531cbc2b3b1754c53f154d3e16163 Mon Sep 17 00:00:00 2001 From: Robert Roebling Date: Tue, 11 Apr 2000 22:08:21 +0000 Subject: [PATCH] Missing accessors for wxSizer items. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7131 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/sizer.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/wx/sizer.h b/include/wx/sizer.h index cea13b3074..a95044ee31 100644 --- a/include/wx/sizer.h +++ b/include/wx/sizer.h @@ -81,8 +81,12 @@ public: wxWindow *GetWindow() const { return m_window; } + void SetWindow( wxWindow *window ) + { m_window = window; } wxSizer *GetSizer() const { return m_sizer; } + void SetSizer( wxSizer *sizer ) + { m_sizer = sizer; } int GetOption() const { return m_option; } int GetFlag() const