Update wxFlexGridSizer ctors to match (new) wxGridSizer ones.

Confusing wxFlexGridSizer(int cols, int vgap = 0, int hgap = 0) was removed as
well as corresponding wxGridSizer ctor overload. New ctor overloads taking gap
as wxSize were added.

See #11040.

Closes #11091.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61635 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-08-10 11:18:23 +00:00
parent c5cc7fbd27
commit 4a00e77ce6
4 changed files with 63 additions and 32 deletions

View File

@@ -141,7 +141,8 @@ Changes in behaviour not resulting in compilation errors, please read this!
easy to mistake for wxGridSizer(int rows, int cols) overload was removed, you
will need to specify both vertical and horizontal gap if you want to use this
overload or specify both rows and columns and the gap otherwise. Use of the
new constructors taking wxSize for the gap argument is preferred.
new constructors taking wxSize for the gap argument is preferred. The same
applies to wxFlexGridSizer as well.
Changes in behaviour which may result in compilation errors