fixed treectrl bug
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1880 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
46735f5536
commit
6e0e2e9ccd
@ -667,17 +667,17 @@ wxTreeCtrl* MyFrame::CreateTreeCtrl( const wxString& label )
|
|||||||
{
|
{
|
||||||
wxTreeCtrl* pTree = new wxTreeCtrl( mpInternalFrm, -1 );
|
wxTreeCtrl* pTree = new wxTreeCtrl( mpInternalFrm, -1 );
|
||||||
|
|
||||||
int rootid = pTree->AppendItem( (long)0, label, 0);
|
int rootid = pTree->AppendItem( (long)0, label, -1);
|
||||||
|
|
||||||
if ( label[0] != 'X' )
|
if ( label[0] != 'X' )
|
||||||
{
|
{
|
||||||
pTree->AppendItem(rootid, "Leaf1", 0);
|
pTree->AppendItem(rootid, "Leaf1", -1);
|
||||||
pTree->AppendItem(rootid, "Leaf2", 0);
|
pTree->AppendItem(rootid, "Leaf2", -1);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
pTree->AppendItem(rootid, "Scully", 0);
|
pTree->AppendItem(rootid, "Scully", -1);
|
||||||
pTree->AppendItem(rootid, "Mulder", 0);
|
pTree->AppendItem(rootid, "Mulder", -1);
|
||||||
}
|
}
|
||||||
|
|
||||||
return pTree;
|
return pTree;
|
||||||
|
Loading…
Reference in New Issue
Block a user