aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cppeditor/cpphighlighter.cpp
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2013-03-27 18:54:03 +0100
committerOswald Buddenhagen <oswald.buddenhagen@digia.com>2013-04-03 13:40:39 +0200
commit792303202213b4c90fc670620658aa0551bfc1b3 (patch)
tree721156735347cac46c084d44c5e5e1d782c22d38 /src/plugins/cppeditor/cpphighlighter.cpp
parent4fc706d7e04abcbdd77d1687e9f4fc0971b8eb07 (diff)
fix include style relating to cplusplus libraries
... and adjust INCLUDEPATH accordingly. while i'm at messing with include statements, also re-order the include blocks according to policy and sort them within bigger blocks. Change-Id: I7762abfd7c4ecf59432b99db2f424e4fa25733a5 Reviewed-by: Tobias Hunger <tobias.hunger@digia.com> Reviewed-by: Eike Ziller <eike.ziller@digia.com>
Diffstat (limited to 'src/plugins/cppeditor/cpphighlighter.cpp')
-rw-r--r--src/plugins/cppeditor/cpphighlighter.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/plugins/cppeditor/cpphighlighter.cpp b/src/plugins/cppeditor/cpphighlighter.cpp
index 8ebd0dcd06..7507988bee 100644
--- a/src/plugins/cppeditor/cpphighlighter.cpp
+++ b/src/plugins/cppeditor/cpphighlighter.cpp
@@ -29,13 +29,14 @@
#include "cpphighlighter.h"
-#include <Token.h>
-#include <cplusplus/SimpleLexer.h>
-#include <cplusplus/Lexer.h>
#include <cpptools/cppdoxygen.h>
#include <cpptools/cpptoolsreuse.h>
#include <texteditor/basetextdocumentlayout.h>
+#include <cplusplus/Token.h>
+#include <cplusplus/SimpleLexer.h>
+#include <cplusplus/Lexer.h>
+
#include <QTextDocument>
#include <QDebug>