]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/wxListCtrl_virtual.py
mention ShouldInheritColours() change
[wxWidgets.git] / wxPython / demo / wxListCtrl_virtual.py
index 7dffd52fdd3fe7a24a0923ceba97b2612e5d1e91..ba64a193c92a63df7ca5b96310e823f977223d87 100644 (file)
@@ -53,7 +53,7 @@ class TestVirtualList(wxListCtrl):
         return item.GetText()
 
     def OnItemDeselected(self, evt):
-        print evt.m_itemIndex
+        self.log.WriteText("OnItemDeselected: %s" % evt.m_itemIndex)
 
 
     #---------------------------------------------------
@@ -61,7 +61,7 @@ class TestVirtualList(wxListCtrl):
     # "virtualness" of the list...  Normally you would
     # determine the text, attributes and/or image based
     # on values from some external data source, but for
-    # this demo we'll just calcualte them
+    # this demo we'll just calculate them
     def OnGetItemText(self, item, col):
         return "Item %d, column %d" % (item, col)