Test both constuctors. Warning fix.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38277 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -211,22 +211,19 @@ NotebookWidgetsPage::NotebookWidgetsPage(wxBookCtrlBase *book,
|
|||||||
wxStaticBox *box = new wxStaticBox(this, wxID_ANY, _T("&Set style"));
|
wxStaticBox *box = new wxStaticBox(this, wxID_ANY, _T("&Set style"));
|
||||||
|
|
||||||
// must be in sync with Orient enum
|
// must be in sync with Orient enum
|
||||||
wxString orientations[] =
|
wxArrayString orientations;
|
||||||
{
|
orientations.Add(_T("&top"));
|
||||||
_T("&top"),
|
orientations.Add(_T("&bottom"));
|
||||||
_T("&bottom"),
|
orientations.Add(_T("&left"));
|
||||||
_T("&left"),
|
orientations.Add(_T("&right"));
|
||||||
_T("&right"),
|
|
||||||
};
|
|
||||||
|
|
||||||
wxASSERT_MSG( WXSIZEOF(orientations) == Orient_Max,
|
wxASSERT_MSG( orientations.GetCount() == Orient_Max,
|
||||||
_T("forgot to update something") );
|
_T("forgot to update something") );
|
||||||
|
|
||||||
m_chkImages = new wxCheckBox(this, wxID_ANY, _T("Show &images"));
|
m_chkImages = new wxCheckBox(this, wxID_ANY, _T("Show &images"));
|
||||||
m_radioOrient = new wxRadioBox(this, wxID_ANY, _T("&Tab orientation"),
|
m_radioOrient = new wxRadioBox(this, wxID_ANY, _T("&Tab orientation"),
|
||||||
wxDefaultPosition, wxDefaultSize,
|
wxDefaultPosition, wxDefaultSize,
|
||||||
WXSIZEOF(orientations), orientations,
|
orientations, 1, wxRA_SPECIFY_COLS);
|
||||||
1, wxRA_SPECIFY_COLS);
|
|
||||||
|
|
||||||
wxSizer *sizerLeft = new wxStaticBoxSizer(box, wxVERTICAL);
|
wxSizer *sizerLeft = new wxStaticBoxSizer(box, wxVERTICAL);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user