]> git.saurik.com Git - wxWidgets.git/commitdiff
GetFirstChild does't need the cookie anymore
authorRobin Dunn <robin@alldunn.com>
Thu, 25 Mar 2004 00:39:25 +0000 (00:39 +0000)
committerRobin Dunn <robin@alldunn.com>
Thu, 25 Mar 2004 00:39:25 +0000 (00:39 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26325 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/demo/TreeCtrl.py

index 84fe4ab2184cf994682062c5b7e217ac94ffa623..460808c9f16b0c164af3e94689652afaff9725dc 100644 (file)
@@ -116,7 +116,7 @@ class TestTreeCtrlPanel(wx.Panel):
             # Lets just see what's visible of its children
             cookie = 0
             root = event.GetItem()
             # Lets just see what's visible of its children
             cookie = 0
             root = event.GetItem()
-            (child, cookie) = self.tree.GetFirstChild(root, cookie)
+            (child, cookie) = self.tree.GetFirstChild(root)
 
             while child.IsOk():
                 self.log.WriteText("Child [%s] visible = %d" %
 
             while child.IsOk():
                 self.log.WriteText("Child [%s] visible = %d" %