X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3b36695de4d1d88e57c75465d81c6462a454eb86..3bdc265d9d49ac78cb5000fbf3d694ed93d0e665:/wxPython/demo/wxTreeCtrl.py diff --git a/wxPython/demo/wxTreeCtrl.py b/wxPython/demo/wxTreeCtrl.py index f16c48c6cf..7f10a1fbec 100644 --- a/wxPython/demo/wxTreeCtrl.py +++ b/wxPython/demo/wxTreeCtrl.py @@ -13,7 +13,7 @@ class MyTreeCtrl(wxTreeCtrl): def OnCompareItems(self, item1, item2): t1 = self.GetItemText(item1) t2 = self.GetItemText(item2) - self.log.WriteText('compare: ' + t1 + '<>' + t2 + '\n') + self.log.WriteText('compare: ' + t1 + ' <> ' + t2 + '\n') if t1 < t2: return -1 if t1 == t2: return 0 return 1 @@ -33,6 +33,7 @@ class TestTreeCtrlPanel(wxPanel): wxTR_HAS_BUTTONS | wxTR_EDIT_LABELS# | wxTR_MULTIPLE , self.log) + #import images #il = wxImageList(16, 16) #idx1 = il.Add(images.getSmilesBitmap())