]> git.saurik.com Git - wxWidgets.git/commitdiff
no changes, just fix typos in comments
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 15 Aug 2007 13:06:02 +0000 (13:06 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 15 Aug 2007 13:06:02 +0000 (13:06 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48096 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/treectrl.h

index 8a4d940a1d2d76eefd873b203ae7bf79428ea756..a8693594b32175edd2e366bad2103c7ecc857031 100644 (file)
@@ -290,13 +290,13 @@ public:
 
         // expand this item
     virtual void Expand(const wxTreeItemId& item) = 0;
-        // expand the item and all its childs and thats childs
+        // expand the item and all its children recursively
     void ExpandAllChildren(const wxTreeItemId& item);
         // expand all items
     void ExpandAll();
         // collapse the item without removing its children
     virtual void Collapse(const wxTreeItemId& item) = 0;
-        // collapse the item and all its childs and thats childs
+        // collapse the item and all its children
     void CollapseAllChildren(const wxTreeItemId& item);
         // collapse all items
     void CollapseAll();