(self, column)
| 159 | event.Skip() |
| 160 | |
| 161 | def checkColumnSize(self, column): |
| 162 | colItem = self.activeColumns[column] |
| 163 | if self.GetColumnWidth(column) < self.columnsMinWidth[column]: |
| 164 | self.SetColumnWidth(column, self.columnsMinWidth[column]) |
| 165 | colItem.resized = True |
| 166 | |
| 167 | def getLastItem(self, state=wx.LIST_STATE_DONTCARE): |
| 168 | lastFound = -1 |
nothing calls this directly
no outgoing calls
no test coverage detected