]> git.saurik.com Git - wxWidgets.git/commitdiff
fix typo; document wxFlexSizerGrowMode
authorFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Sat, 31 Jan 2009 20:10:13 +0000 (20:10 +0000)
committerFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Sat, 31 Jan 2009 20:10:13 +0000 (20:10 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58561 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/sizer.h
interface/wx/sizer.h

index 316602ca449ac1928541312b7f56e184e7890494..d65663d1dbce4f079422c29ee64f0d62f4c6bd04 100644 (file)
@@ -758,8 +758,8 @@ private:
 // wxFlexGridSizer
 //---------------------------------------------------------------------------
 
 // wxFlexGridSizer
 //---------------------------------------------------------------------------
 
-// the bevaiour for resizing wxFlexGridSizer cells in the "non-flexible"
-// direction
+// values which define the behaviour for resizing wxFlexGridSizer cells in the
+// "non-flexible" direction
 enum wxFlexSizerGrowMode
 {
     // don't resize the cells in non-flexible direction at all
 enum wxFlexSizerGrowMode
 {
     // don't resize the cells in non-flexible direction at all
index b0a44268082086e17deedaa24ac050cda69cff0b..04bf109f31af525f3c046e64347e6dd45bcd636a 100644 (file)
@@ -1394,6 +1394,22 @@ public:
 };
 
 
 };
 
 
+/**
+    Values which define the behaviour for resizing wxFlexGridSizer cells in the
+    "non-flexible" direction.
+*/
+enum wxFlexSizerGrowMode
+{
+    /// Don't resize the cells in non-flexible direction at all.
+    wxFLEX_GROWMODE_NONE,
+
+    /// Uniformly resize only the specified ones (default).
+    wxFLEX_GROWMODE_SPECIFIED,
+
+    /// Uniformly resize all cells.
+    wxFLEX_GROWMODE_ALL
+};
+
 
 /**
     @class wxFlexGridSizer
 
 /**
     @class wxFlexGridSizer