Search for the previous occurrence of text in a note.
| 3936 | //* text in a note. |
| 3937 | //******************************************* |
| 3938 | void NBrowserWindow::findPrevInNote() { |
| 3939 | findReplace->showFind(); |
| 3940 | QString find = findReplace->findLine->text(); |
| 3941 | if (find != "") |
| 3942 | editor->page()->findText(find, |
| 3943 | findReplace->getCaseSensitive() | QWebPage::FindBackward | QWebPage::FindWrapsAroundDocument); |
| 3944 | |
| 3945 | } |
| 3946 | |
| 3947 | |
| 3948 |
nothing calls this directly
no test coverage detected