Search for the next occurrence of text in a note.
| 3922 | //* in a note. |
| 3923 | //******************************************* |
| 3924 | void NBrowserWindow::findNextInNote() { |
| 3925 | findReplace->showFind(); |
| 3926 | QString find = findReplace->findLine->text(); |
| 3927 | if (find != "") |
| 3928 | editor->page()->findText(find, |
| 3929 | findReplace->getCaseSensitive() | QWebPage::FindWrapsAroundDocument); |
| 3930 | } |
| 3931 | |
| 3932 | |
| 3933 |
nothing calls this directly
no test coverage detected