| 141 | } |
| 142 | |
| 143 | void QuickFindWidget::highlightMatches() |
| 144 | { |
| 145 | qInfo(Q_FUNC_INFO); |
| 146 | |
| 147 | editor->setIndicatorCurrent(indicator); |
| 148 | for (const auto &range : matches) { |
| 149 | editor->indicatorFillRange(range.first, range.second - range.first); |
| 150 | } |
| 151 | } |
| 152 | |
| 153 | void QuickFindWidget::showWrapIndicator() |
| 154 | { |
nothing calls this directly
no outgoing calls
no test coverage detected