]> git.saurik.com Git - wxWidgets.git/commitdiff
Added SetColumnCount method
authorRobin Dunn <robin@alldunn.com>
Wed, 22 Oct 2003 23:29:54 +0000 (23:29 +0000)
committerRobin Dunn <robin@alldunn.com>
Wed, 22 Oct 2003 23:29:54 +0000 (23:29 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24267 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/wxPython/lib/mixins/listctrl.py

index c422c17cadba908fa8c31d7db5761e351eaa0ff8..029994a8c99c96b2266495b7e8499bba3754791c 100644 (file)
@@ -40,15 +40,18 @@ class wxColumnSorterMixin:
     """
 
     def __init__(self, numColumns):
-        self._colSortFlag = [0] * numColumns
-        self._col = -1
-
+        self.SetColumnCount(numColumns)
         list = self.GetListCtrl()
         if not list:
             raise ValueError, "No wxListCtrl available"
         EVT_LIST_COL_CLICK(list, list.GetId(), self.__OnColClick)
 
 
+    def SetColumnCount(self, newNumColumns):
+        self._colSortFlag = [0] * newNumColumns
+        self._col = -1
+
+
     def SortListItems(self, col=-1, ascending=1):
         """Sort the list on demand.  Can also be used to set the sort column and order."""
         oldCol = self._col