X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2a21ac1590f2950cdbbe1b423d072f4226c37741..22095a6e1a53cacd630625f02b3b23728a7bb12a:/contrib/samples/fl/fl_demo2.cpp diff --git a/contrib/samples/fl/fl_demo2.cpp b/contrib/samples/fl/fl_demo2.cpp index 23d3ed29ab..4c68a84101 100644 --- a/contrib/samples/fl/fl_demo2.cpp +++ b/contrib/samples/fl/fl_demo2.cpp @@ -96,7 +96,9 @@ bool MyApp::OnInit(void) menu_bar->Append(file_menu, _("&File")); menu_bar->Append(active_menu, _("Active &Layout")); +#if wxUSE_STATUSBAR frame->CreateStatusBar(3); +#endif // wxUSE_STATUSBAR frame->SetMenuBar(menu_bar); @@ -203,7 +205,7 @@ MyFrame::MyFrame(wxFrame *frame, const wxChar *title, int x, int y, int w, int h // Create all layouts for( i = 0; i != MAX_LAYOUTS; ++i ) - { + { CreateLayout( i ); } // hide others @@ -489,17 +491,17 @@ wxTreeCtrl* MyFrame::CreateTreeCtrl( const wxString& label ) { wxTreeCtrl* pTree = new wxTreeCtrl( mpInternalFrm, wxID_ANY ); - const wxTreeItemId rootid = pTree->AppendItem( (long)0, label, 0); + const wxTreeItemId rootid = pTree->AddRoot(label); - if ( label[0] != 'X' ) + if ( label.StartsWith(_T("X")) ) { - pTree->AppendItem(rootid, _("Leaf1"), 0); - pTree->AppendItem(rootid, _("Leaf2"), 0); + pTree->AppendItem(rootid, _("Scully")); + pTree->AppendItem(rootid, _("Mulder")); } else { - pTree->AppendItem(rootid, _("Scully"), 0); - pTree->AppendItem(rootid, _("Mulder"), 0); + pTree->AppendItem(rootid, _("Leaf1")); + pTree->AppendItem(rootid, _("Leaf2")); } return pTree; @@ -671,7 +673,7 @@ wxWindow* MyFrame::CreateDevLayout( wxFrameLayout& layout, wxWindow* pParent ) pClassView->AppendItem( rootId, _("serializer-classes (grabbed at run-time)"), 0 ); // now create "output" window - wxNotebook* pTabbedArea = new wxNotebook(pParent, wxID_ANY); + wxNotebook* pTabbedArea = new wxNotebook(pParent, wxID_ANY); // SEB: originally here was a wxpp (wxWorkshop) class used // wxPaggedWindow* pTabbedArea = new wxPaggedWindow(); // pTabbedArea->Create( pParent, wxID_ANY );