| 66 | } |
| 67 | |
| 68 | void DocumentationFindWidget::emitDataChanged() |
| 69 | { |
| 70 | FindOptions opts; |
| 71 | if (m_ui->matchCase->isChecked()) |
| 72 | opts |= MatchCase; |
| 73 | |
| 74 | emit searchDataChanged(m_ui->findText->text(), opts); |
| 75 | } |
| 76 | |
| 77 | void KDevelop::DocumentationFindWidget::hideEvent(QHideEvent* event) |
| 78 | { |