CheckListBoxFrame *pFrame = new CheckListBoxFrame
(
NULL,
- _T("wxWindows Checklistbox Sample"),
+ _T("wxWidgets Checklistbox Sample"),
50, 50, 480, 320
);
SetTopWindow(pFrame);
int x, int y, int w, int h)
: wxFrame(frame, wxID_ANY, title, wxPoint(x, y), wxSize(w, h))
{
+#if wxUSE_STATUSBAR
// create the status line
const int widths[] = { -1, 60 };
CreateStatusBar(2);
SetStatusWidths(2, widths);
wxLogStatus(this, _T("no selection"));
+#endif // wxUSE_STATUSBAR
// Make a menubar
// --------------