diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/help/helpviewer_qwv.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/help/helpviewer_qwv.cpp b/src/plugins/help/helpviewer_qwv.cpp index 63e194f178..d47c02982d 100644 --- a/src/plugins/help/helpviewer_qwv.cpp +++ b/src/plugins/help/helpviewer_qwv.cpp @@ -341,7 +341,8 @@ bool HelpViewer::isBackwardAvailable() const bool HelpViewer::findText(const QString &text, Find::FindFlags flags, bool incremental, bool fromSearch) { - Q_UNUSED((incremental && fromSearch)) + Q_UNUSED(incremental); + Q_UNUSED(fromSearch); QWebPage::FindFlags options = QWebPage::FindWrapsAroundDocument; if (flags & Find::FindBackward) options |= QWebPage::FindBackward; |