diff --git a/src/plugins/texteditor/basetexteditor.cpp b/src/plugins/texteditor/basetexteditor.cpp index 9bc9ef529a65b1c5cebff8c5da2a74cf845ea638..474fa0c4435674d51c25716d63e5ab590917e545 100644 --- a/src/plugins/texteditor/basetexteditor.cpp +++ b/src/plugins/texteditor/basetexteditor.cpp @@ -3403,7 +3403,7 @@ void BaseTextEditor::_q_highlightBlocks() block.length())); QTextCursor closeCursor; bool firstRun = true; - while (TextBlockUserData::findPreviousBlockOpenParenthesis(&cursor), firstRun) { + while (TextBlockUserData::findPreviousBlockOpenParenthesis(&cursor, firstRun)) { firstRun = false; highlightBlocksInfo.open.prepend(cursor.blockNumber()); highlightBlocksInfo.visualIndent.prepend(d->visualIndent(cursor.block()));