(self, event)
| 106 | event.Skip() |
| 107 | |
| 108 | def SortCompareCols(self, event): |
| 109 | self.Freeze() |
| 110 | self.paramList.ClearAll() |
| 111 | self.PopulateList(event.Column) |
| 112 | self.Thaw() |
| 113 | |
| 114 | def UpdateList(self, items=None): |
| 115 | # We do nothing with `items`, but it gets returned by the price service thread |
nothing calls this directly
no test coverage detected