mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-03 11:54:30 -04:00
Use QTextDocument::FindFlags() to initialize flags instead of 0 in helpbrowser.cpp
This commit is contained in:
parent
8265c5ebec
commit
29443c4b78
1 changed files with 1 additions and 1 deletions
|
@ -348,7 +348,7 @@ HelpBrowser::find(bool forward)
|
|||
return;
|
||||
}
|
||||
|
||||
QTextDocument::FindFlags flags = 0;
|
||||
QTextDocument::FindFlags flags = QTextDocument::FindFlags();
|
||||
QTextCursor cursor = ui.txtBrowser->textCursor();
|
||||
QString searchPhrase = ui.lineFind->text();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue