Skip to content
Snippets Groups Projects
Commit bb057a66 authored by Eike Ziller's avatar Eike Ziller
Browse files

Whole-words searching doesn't work with QtWebKit.


So we turn it off.

Task-number: QTCREATORBUG-4706
Change-Id: Ib51740428db35a1697dd5bca0f8f58b7ffd5fb1a
Reviewed-by: default avatarKarsten Heimrich <karsten.heimrich@nokia.com>
parent e287fbd8
No related branches found
No related tags found
No related merge requests found
...@@ -53,8 +53,7 @@ bool HelpFindSupport::isEnabled() const ...@@ -53,8 +53,7 @@ bool HelpFindSupport::isEnabled() const
Find::FindFlags HelpFindSupport::supportedFindFlags() const Find::FindFlags HelpFindSupport::supportedFindFlags() const
{ {
return Find::FindBackward | Find::FindCaseSensitively return Find::FindBackward | Find::FindCaseSensitively;
| Find::FindWholeWords;
} }
QString HelpFindSupport::currentFindString() const QString HelpFindSupport::currentFindString() const
...@@ -103,8 +102,7 @@ HelpViewerFindSupport::HelpViewerFindSupport(HelpViewer *viewer) ...@@ -103,8 +102,7 @@ HelpViewerFindSupport::HelpViewerFindSupport(HelpViewer *viewer)
Find::FindFlags HelpViewerFindSupport::supportedFindFlags() const Find::FindFlags HelpViewerFindSupport::supportedFindFlags() const
{ {
return Find::FindBackward | Find::FindCaseSensitively return Find::FindBackward | Find::FindCaseSensitively;
| Find::FindWholeWords;
} }
QString HelpViewerFindSupport::currentFindString() const QString HelpViewerFindSupport::currentFindString() const
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment