From 7869b836decaaefbb3b1de58dfe297e7d9dd5d2a Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 15 Oct 2004 19:35:03 +0000 Subject: [PATCH] Corrected some comments git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29888 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/demo/ListCtrl.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wxPython/demo/ListCtrl.py b/wxPython/demo/ListCtrl.py index da993466ec..fdc9beba38 100644 --- a/wxPython/demo/ListCtrl.py +++ b/wxPython/demo/ListCtrl.py @@ -114,7 +114,7 @@ class TestListCtrlPanel(wx.Panel, listmix.ColumnSorterMixin): self.PopulateList() # Now that the list exists we can init the other base class, - # see wxPython/lib/mixins/listctrl.py + # see wx/lib/mixins/listctrl.py self.itemDataMap = musicdata listmix.ColumnSorterMixin.__init__(self, 3) #self.SortListItems(0, True) @@ -190,11 +190,11 @@ class TestListCtrlPanel(wx.Panel, listmix.ColumnSorterMixin): self.currentItem = 0 - # Used by the ColumnSorterMixin, see wxPython/lib/mixins/listctrl.py + # Used by the ColumnSorterMixin, see wx/lib/mixins/listctrl.py def GetListCtrl(self): return self.list - # Used by the ColumnSorterMixin, see wxPython/lib/mixins/listctrl.py + # Used by the ColumnSorterMixin, see wx/lib/mixins/listctrl.py def GetSortImages(self): return (self.sm_dn, self.sm_up) -- 2.45.2