Search for the previous occurrence of text in a note.
| 3856 | //* text in a note. |
| 3857 | //******************************************* |
| 3858 | void NBrowserWindow::findPrevShortcut() { |
| 3859 | findReplace->showFind(); |
| 3860 | QString find = findReplace->findLine->text(); |
| 3861 | if (find != "") |
| 3862 | editor->page()->findText(find, |
| 3863 | findReplace->getCaseSensitive() | QWebPage::FindBackward | QWebPage::FindWrapsAroundDocument); |
| 3864 | } |
| 3865 | |
| 3866 | |
| 3867 |
nothing calls this directly
no test coverage detected