X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/95bfd958bda8955ac81277c78e5627c926154f39..42f8298f6f42d5d63bb3caf65682b7d9d9f8b702:/wxPython/demo/TreeCtrl.py diff --git a/wxPython/demo/TreeCtrl.py b/wxPython/demo/TreeCtrl.py index 78cb5231e6..5c53d1931f 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" % @@ -128,7 +128,8 @@ class TestTreeCtrlPanel(wx.Panel): def OnEndEdit(self, event): - self.log.WriteText("OnEndEdit\n") + self.log.WriteText("OnEndEdit: %s %s\n" % + (event.IsEditCancelled(), event.GetLabel()) ) # show how to reject edit, we'll not allow any digits for x in event.GetLabel(): if x in string.digits: @@ -198,5 +199,5 @@ wx.TreeItemId handles. if __name__ == '__main__': import sys,os import run - run.main(['', os.path.basename(sys.argv[0])]) + run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:])