fix build with qt5

This commit is contained in:
Krasilnikov Sergei 2023-01-17 14:26:42 +03:00
parent 1b7a8b4cf0
commit 5a745f3c45

View File

@ -248,8 +248,9 @@ void SyntaxHighlighter::setLanguage(int lang)
void SyntaxHighlighter::highlightBlock(const QString &text) {
for (const HighlightingRule &rule : highlightingRules) {
QRegularExpression expression(rule.pattern);
QRegularExpressionMatch match = expression.match(text);
for (const QRegularExpressionMatch &match : expression.globalMatch(text)) {
QRegularExpressionMatchIterator iter = expression.globalMatch(text);
while (iter.hasNext()) {
QRegularExpressionMatch match = iter.next();
int length = match.capturedLength();
setFormat(match.capturedStart(), length, rule.format);
}