From 58be4fb13167350d827665ee233ba1108f2f77fc Mon Sep 17 00:00:00 2001
From: Robin Dunn <robin@alldunn.com>
Date: Thu, 25 Mar 2004 00:39:25 +0000
Subject: [PATCH] GetFirstChild does't need the cookie anymore

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26325 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---
 wxPython/demo/TreeCtrl.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/wxPython/demo/TreeCtrl.py b/wxPython/demo/TreeCtrl.py
index 84fe4ab218..460808c9f1 100644
--- a/wxPython/demo/TreeCtrl.py
+++ b/wxPython/demo/TreeCtrl.py
@@ -116,7 +116,7 @@ class TestTreeCtrlPanel(wx.Panel):
             # 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" %
-- 
2.47.2