A few tweaks and some cleanup for the wxPython demo

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14333 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2002-02-21 00:50:27 +00:00
parent ce22d615fe
commit a1bfae9d83
4 changed files with 31 additions and 24 deletions

View File

@@ -51,8 +51,10 @@ class TestVirtualList(wxListCtrl):
def OnGetItemText(self, item, col):
return "Item %d, column %d" % (item, col)
def OnGetItemImage(self, item):
return 0
return -1 # if used you should return the index in the ImageList
def OnGetItemAttr(self, item):
if item % 3 == 1: