From: Vadim Zeitlin Date: Tue, 8 Dec 1998 10:44:46 +0000 (+0000) Subject: uncommented some code which works now X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/9769e5894194d81ac5feb16bb82ec99337ccc5d1 uncommented some code which works now git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1129 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/treectrl/treetest.cpp b/samples/treectrl/treetest.cpp index 5bcbd4b8d3..17d2ac3490 100644 --- a/samples/treectrl/treetest.cpp +++ b/samples/treectrl/treetest.cpp @@ -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)); -*/ }