Restore ability to create wxFlexGridSizer with 2 params (number of columns and vertical gap)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62651 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2009-11-14 21:50:50 +00:00
parent 4f6bcb8390
commit 7aab7176f1
2 changed files with 2 additions and 2 deletions

View File

@@ -827,7 +827,7 @@ class WXDLLIMPEXP_CORE wxFlexGridSizer: public wxGridSizer
public:
// ctors specifying the number of columns only: number of rows will be
// deduced automatically depending on the number of sizer elements
wxFlexGridSizer( int cols, int vgap, int hgap );
wxFlexGridSizer( int cols, int vgap, int hgap = 0);
wxFlexGridSizer( int cols, const wxSize& gap = wxSize(0, 0) );
// ctors specifying the number of rows and columns