fix typo; document wxFlexSizerGrowMode
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58561 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -758,8 +758,8 @@ private:
|
|||||||
// wxFlexGridSizer
|
// wxFlexGridSizer
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
|
|
||||||
// the bevaiour for resizing wxFlexGridSizer cells in the "non-flexible"
|
// values which define the behaviour for resizing wxFlexGridSizer cells in the
|
||||||
// direction
|
// "non-flexible" direction
|
||||||
enum wxFlexSizerGrowMode
|
enum wxFlexSizerGrowMode
|
||||||
{
|
{
|
||||||
// don't resize the cells in non-flexible direction at all
|
// don't resize the cells in non-flexible direction at all
|
||||||
|
@@ -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
|
||||||
|
Reference in New Issue
Block a user