Mark the trailing whitespaces.

This commit is contained in:
Roberto Raggi
2010-01-29 10:50:16 +01:00
parent 020e7f5739
commit 272014a5d0
2 changed files with 5 additions and 4 deletions

View File

@@ -189,11 +189,11 @@ void QScriptHighlighter::highlightBlock(const QString &text)
previousTokenEnd = token.end();
}
setFormat(previousTokenEnd, text.length() - previousTokenEnd, m_formats[VisualWhitespace]);
int firstNonSpace = 0;
if (! tokens.isEmpty()) {
const Token &tk = tokens.first();
firstNonSpace = tk.offset;
}
if (! tokens.isEmpty())
firstNonSpace = tokens.first().offset;
setCurrentBlockState(m_scanner.endState());
onBlockEnd(m_scanner.endState(), firstNonSpace);