Added dummy DeleteChildren so the sample will at least link.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1236 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1998-12-18 14:53:13 +00:00
parent 94b49b9303
commit 5fbc0fa65a

View File

@@ -756,6 +756,13 @@ size_t wxTreeCtrl::GetChildrenCount(const wxTreeItemId& item, bool recursively)
return 0;
}
// delete all children (but don't delete the item itself)
// NB: this won't send wxEVT_COMMAND_TREE_ITEM_DELETED events
void wxTreeCtrl::DeleteChildren(const wxTreeItemId& item)
{
// TODO
}
// ----------------------------------------------------------------------------
// implementation
// ----------------------------------------------------------------------------