summaryrefslogtreecommitdiffstats
path: root/src/gui/text
diff options
context:
space:
mode:
authorQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2018-03-05 13:15:31 +0100
committerQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2018-03-05 13:15:31 +0100
commit954fe2c35d0b0435b7f0443d917a5145dfd0c2a4 (patch)
tree13d2d5c76823fa2a3664f2a06219cd1fcc26f7a4 /src/gui/text
parent70057dfc0e53b7996acd5ef2c0f9c40aa3f66062 (diff)
parent681933c5b8656543c4974a1db5fde093f2934189 (diff)
Merge remote-tracking branch 'origin/5.11' into dev
Diffstat (limited to 'src/gui/text')
-rw-r--r--src/gui/text/qtextdocument.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/text/qtextdocument.cpp b/src/gui/text/qtextdocument.cpp
index e58cd02af5..1c0751fbad 100644
--- a/src/gui/text/qtextdocument.cpp
+++ b/src/gui/text/qtextdocument.cpp
@@ -1349,7 +1349,7 @@ QTextCursor QTextDocument::find(const QString &subString, int from, FindFlags op
If the given \a cursor has a selection, the search begins after the
selection; otherwise it begins at the cursor's position.
- By default the search is case-sensitive, and can match text anywhere in the
+ By default the search is case insensitive, and can match text anywhere in the
document.
*/
QTextCursor QTextDocument::find(const QString &subString, const QTextCursor &cursor, FindFlags options) const
@@ -1472,7 +1472,7 @@ QTextCursor QTextDocument::find(const QRegExp & expr, int from, FindFlags option
If the given \a cursor has a selection, the search begins after the
selection; otherwise it begins at the cursor's position.
- By default the search is case-sensitive, and can match text anywhere in the
+ By default the search is case insensitive, and can match text anywhere in the
document.
*/
QTextCursor QTextDocument::find(const QRegExp &expr, const QTextCursor &cursor, FindFlags options) const
@@ -1599,7 +1599,7 @@ QTextCursor QTextDocument::find(const QRegularExpression &expr, int from, FindFl
If the given \a cursor has a selection, the search begins after the
selection; otherwise it begins at the cursor's position.
- By default the search is case-sensitive, and can match text anywhere in the
+ By default the search is case insensitive, and can match text anywhere in the
document.
*/
QTextCursor QTextDocument::find(const QRegularExpression &expr, const QTextCursor &cursor, FindFlags options) const