don't fix the columns number to 1 by default in ctors (closes #10863)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60884 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-06-03 22:28:26 +00:00
parent 1bfabf3675
commit e77669fcee
2 changed files with 6 additions and 2 deletions

View File

@@ -344,6 +344,10 @@ All (GUI):
- Added wxDC::CopyAttributes() and use it in wxBufferedDC. - Added wxDC::CopyAttributes() and use it in wxBufferedDC.
- Added wxTextWrapper helper class useful for wrapping lines of text. - Added wxTextWrapper helper class useful for wrapping lines of text.
GTK:
- wxRadioBox constructor uses default consistent with other ports now.
MSW: MSW:
- Allow changing the height of wxChoice and wxComboBox. - Allow changing the height of wxChoice and wxComboBox.

View File

@@ -36,7 +36,7 @@ public:
const wxSize& size = wxDefaultSize, const wxSize& size = wxDefaultSize,
int n = 0, int n = 0,
const wxString choices[] = (const wxString *) NULL, const wxString choices[] = (const wxString *) NULL,
int majorDim = 1, int majorDim = 0,
long style = wxRA_HORIZONTAL, long style = wxRA_HORIZONTAL,
const wxValidator& val = wxDefaultValidator, const wxValidator& val = wxDefaultValidator,
const wxString& name = wxRadioBoxNameStr) const wxString& name = wxRadioBoxNameStr)
@@ -52,7 +52,7 @@ public:
const wxPoint& pos, const wxPoint& pos,
const wxSize& size, const wxSize& size,
const wxArrayString& choices, const wxArrayString& choices,
int majorDim = 1, int majorDim = 0,
long style = wxRA_HORIZONTAL, long style = wxRA_HORIZONTAL,
const wxValidator& val = wxDefaultValidator, const wxValidator& val = wxDefaultValidator,
const wxString& name = wxRadioBoxNameStr) const wxString& name = wxRadioBoxNameStr)