(self, item)
| 88 | formatColor('currentTextChanged', QColor(Qt.yellow)), currentText)) |
| 89 | |
| 90 | def onItemActivated(self, item): |
| 91 | self.resultView.appendHtml( |
| 92 | '{0}: {1}'.format( |
| 93 | formatColor('itemActivated', QColor(Qt.blue)), item.text())) |
| 94 | |
| 95 | def onItemChanged(self, item): |
| 96 | self.resultView.appendHtml( |
nothing calls this directly
no test coverage detected