| 41 | } |
| 42 | |
| 43 | void KDevelop::DocumentationFindWidget::searchNext() |
| 44 | { |
| 45 | FindOptions opts=Next; |
| 46 | if (m_ui->matchCase->isChecked()) |
| 47 | opts |= MatchCase; |
| 48 | |
| 49 | emit searchRequested(m_ui->findText->text(), opts); |
| 50 | } |
| 51 | |
| 52 | void KDevelop::DocumentationFindWidget::searchPrevious() |
| 53 | { |