From: Julian Smart Date: Sat, 14 Dec 2002 09:29:02 +0000 (+0000) Subject: Added missing SetOrientation accessor X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b657b4c98646c607bb5e0c825ee05fb0744cd44b Added missing SetOrientation accessor git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18225 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/sizer.h b/include/wx/sizer.h index 993647edc7..ece3be312e 100644 --- a/include/wx/sizer.h +++ b/include/wx/sizer.h @@ -323,6 +323,9 @@ public: int GetOrientation() { return m_orient; } + void SetOrientation(int orient) + { m_orient = orient; } + protected: int m_orient; int m_stretchable;