| 5149 | } |
| 5150 | |
| 5151 | void EventBrowser::on_findEvent_textEdited(const QString &arg1) |
| 5152 | { |
| 5153 | if(arg1.isEmpty()) |
| 5154 | { |
| 5155 | m_FindHighlight->stop(); |
| 5156 | |
| 5157 | m_Model->SetFindText(QString()); |
| 5158 | updateFindResultsAvailable(false); |
| 5159 | } |
| 5160 | else |
| 5161 | { |
| 5162 | m_FindHighlight->start(); // restart |
| 5163 | } |
| 5164 | } |
| 5165 | |
| 5166 | void EventBrowser::on_filterExpression_keyPress(QKeyEvent *e) |
| 5167 | { |
nothing calls this directly
no test coverage detected