| 230 | } |
| 231 | |
| 232 | void QuickFindWidget::goToCurrentMatch() |
| 233 | { |
| 234 | editor->setSel(matches[currentMatchIndex].first, matches[currentMatchIndex].second); |
| 235 | editor->verticalCentreCaret(); |
| 236 | |
| 237 | ui->lblInfo->show(); |
| 238 | ui->lblInfo->setText(tr("%L1/%L2").arg(currentMatchIndex + 1).arg(matches.length())); |
| 239 | } |
| 240 | |
| 241 | int QuickFindWidget::computeSearchFlags() const |
| 242 | { |