(self, item)
| 98 | formatColor('itemChanged', QColor(Qt.cyan)), item.text())) |
| 99 | |
| 100 | def onItemClicked(self, item): |
| 101 | self.resultView.appendHtml( |
| 102 | '{0}: {1}'.format(formatColor('itemClicked', QColor(Qt.magenta)), item.text())) |
| 103 | |
| 104 | def onItemDoubleClicked(self, item): |
| 105 | self.resultView.appendHtml( |
nothing calls this directly
no test coverage detected