(self, current, previous)
| 69 | self.onItemSelectionChanged) |
| 70 | |
| 71 | def onCurrentItemChanged(self, current, previous): |
| 72 | current = current.text() if current else '' |
| 73 | previous = previous.text() if previous else '' |
| 74 | self.resultView.appendHtml( |
| 75 | '{0}: [{1}] -> [{2}]'.format( |
| 76 | formatColor('currentItemChanged', QColor(Qt.red)), |
| 77 | current, previous)) |
| 78 | |
| 79 | def onCurrentRowChanged(self, currentRow): |
| 80 | self.resultView.appendHtml( |
nothing calls this directly
no test coverage detected