]> git.saurik.com Git - wxWidgets.git/commitdiff
Added missing SetOrientation accessor
authorJulian Smart <julian@anthemion.co.uk>
Sat, 14 Dec 2002 09:29:02 +0000 (09:29 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Sat, 14 Dec 2002 09:29:02 +0000 (09:29 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18225 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/sizer.h

index 993647edc749f7252f6db60dde3a6c54d92712e9..ece3be312ea84cb7147e0c9dfaa5de3f2f3523b9 100644 (file)
@@ -323,6 +323,9 @@ public:
     int GetOrientation()
         { return m_orient; }
 
+    void SetOrientation(int orient)
+        { m_orient = orient; }
+
 protected:
     int m_orient;
     int m_stretchable;