From 63a24a91a9bace1fe55a7f771688c62261d86354 Mon Sep 17 00:00:00 2001 From: =?utf8?q?W=C5=82odzimierz=20Skiba?= Date: Wed, 14 Jul 2004 19:30:00 +0000 Subject: [PATCH] VC warning fix and update to curent state of wxW. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28235 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- contrib/samples/fl/fl_demo2.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/contrib/samples/fl/fl_demo2.cpp b/contrib/samples/fl/fl_demo2.cpp index 9507011ed3..dafbaa61cc 100644 --- a/contrib/samples/fl/fl_demo2.cpp +++ b/contrib/samples/fl/fl_demo2.cpp @@ -489,17 +489,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; -- 2.45.2