(self, items)
| 221 | self.update(items) |
| 222 | |
| 223 | def populate(self, items): |
| 224 | if len(items) > 0: |
| 225 | self.unselectAll() |
| 226 | items.sort(key=self.itemSort) |
| 227 | self.activeItems = items |
| 228 | d.Display.populate(self, items) |
| 229 | |
| 230 | def refresh(self, items): |
| 231 | if len(items) > 1: |
nothing calls this directly
no test coverage detected