| 313 | } |
| 314 | |
| 315 | void QuickFindWidget::returnPressed() |
| 316 | { |
| 317 | if (QGuiApplication::keyboardModifiers() & Qt::ShiftModifier) { |
| 318 | navigateToPrevMatch(); |
| 319 | } |
| 320 | else { |
| 321 | navigateToNextMatch(true); |
| 322 | } |
| 323 | } |
| 324 | |
| 325 | void QuickFindWidget::clearHighlights() |
| 326 | { |
nothing calls this directly
no outgoing calls
no test coverage detected