Search for the next occurrence of text in a note.
| 3842 | //* in a note. |
| 3843 | //******************************************* |
| 3844 | void NBrowserWindow::findNextShortcut() { |
| 3845 | findReplace->showFind(); |
| 3846 | QString find = findReplace->findLine->text(); |
| 3847 | if (find != "") |
| 3848 | editor->page()->findText(find, |
| 3849 | findReplace->getCaseSensitive() | QWebPage::FindWrapsAroundDocument); |
| 3850 | } |
| 3851 | |
| 3852 | |
| 3853 |
nothing calls this directly
no test coverage detected