]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/LaTeXHighlighter.cpp
Use <cstdint> instead of <boost/cstdint.hpp>
[lyx.git] / src / frontends / qt4 / LaTeXHighlighter.cpp
index ee32cd002a14ab7ae7f5a14af21566f026475c0b..5ab349e485ca7b541855e62c18597e07d6a0e84e 100644 (file)
@@ -20,8 +20,7 @@ namespace lyx {
 namespace frontend {
 
 
-LaTeXHighlighter::LaTeXHighlighter(QTextDocument * parent,
-                                   bool const at_letter)
+LaTeXHighlighter::LaTeXHighlighter(QTextDocument * parent, bool at_letter)
        : QSyntaxHighlighter(parent), at_letter_(at_letter)
 {
        auto blend = [](QColor color1, QColor color2) {
@@ -106,14 +105,14 @@ void LaTeXHighlighter::highlightBlock(QString const & text)
        // %comment
        // Treat a line as a comment starting at a percent sign
        // * that is the first character in a line
-       // * that is preceded by 
+       // * that is preceded by
        // ** an even number of backslashes
        // ** any character other than a backslash
-       QRegExp exprComment("(?:^|[^\\\\])(?:\\\\\\\\)*(%).*$"); 
+       QRegExp exprComment("(?:^|[^\\\\])(?:\\\\\\\\)*(%).*$");
        exprComment.indexIn(text);
        index = exprComment.pos(1);
        while (index >= 0) {
-               int const length = exprComment.matchedLength() 
+               int const length = exprComment.matchedLength()
                                 - (index - exprComment.pos(0));
                setFormat(index, length, commentFormat);
                exprComment.indexIn(text, index + length);