summaryrefslogtreecommitdiff
path: root/examples/xmlpatterns/shared/xmlsyntaxhighlighter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/xmlpatterns/shared/xmlsyntaxhighlighter.cpp')
-rw-r--r--examples/xmlpatterns/shared/xmlsyntaxhighlighter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/xmlpatterns/shared/xmlsyntaxhighlighter.cpp b/examples/xmlpatterns/shared/xmlsyntaxhighlighter.cpp
index 85c8020..385fd11 100644
--- a/examples/xmlpatterns/shared/xmlsyntaxhighlighter.cpp
+++ b/examples/xmlpatterns/shared/xmlsyntaxhighlighter.cpp
@@ -73,7 +73,7 @@ XmlSyntaxHighlighter::XmlSyntaxHighlighter(QTextDocument *parent)
void XmlSyntaxHighlighter::highlightBlock(const QString &text)
{
- foreach (const HighlightingRule &rule, highlightingRules) {
+ for (const HighlightingRule &rule : qAsConst(highlightingRules)) {
QRegExp expression(rule.pattern);
int index = text.indexOf(expression);
while (index >= 0) {