MCPcopy Create free account
hub / github.com/baumgarr/nixnote2 / findPrevInNote

Method findPrevInNote

gui/nbrowserwindow.cpp:3938–3945  ·  view source on GitHub ↗

Search for the previous occurrence of text in a note.

Source from the content-addressed store, hash-verified

3936//* text in a note.
3937//*******************************************
3938void 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

Callers

nothing calls this directly

Calls 2

showFindMethod · 0.80
getCaseSensitiveMethod · 0.80

Tested by

no test coverage detected