uncommented some code which works now

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1129 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 1998-12-08 10:44:46 +00:00
parent 2c1ef24716
commit 9769e58941

View File

@ -336,9 +336,8 @@ static inline const char *Bool2String(bool b)
return b ? "" : "not ";
}
void MyTreeItemData::ShowInfo(wxTreeCtrl */*tree*/)
void MyTreeItemData::ShowInfo(wxTreeCtrl *tree)
{
/*
wxLogMessage("Item '%s': %sselected, %sexpanded, %sbold,\n"
"%u children (%u immediately under this item).",
m_desc.c_str(),
@ -347,5 +346,4 @@ void MyTreeItemData::ShowInfo(wxTreeCtrl */*tree*/)
Bool2String(tree->IsBold(GetId())),
tree->GetChildrenCount(GetId()),
tree->GetChildrenCount(GetId(), FALSE));
*/
}