mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
fix build with qt5
This commit is contained in:
parent
1b7a8b4cf0
commit
5a745f3c45
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user