aboutsummaryrefslogtreecommitdiffstats
path: root/tools/qmljs
diff options
context:
space:
mode:
authorAndrew Knight <andrew.knight@digia.com>2014-03-09 23:27:34 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-03-10 15:04:11 +0100
commit50f8133a1a1eb434abafcca5335be706d4f0b694 (patch)
tree5139515a7e44e860a19b016c65ba139ea6ce8a76 /tools/qmljs
parentfe2de633f9b9454ec8a9c2a5874ad85f49d8d54d (diff)
Remove several uses of module includes
Module includes are discouraged because they may increase compilation time. While debugging a broken core module include header, a number of module include infractions were discovered in qtdeclarative. Replace them with their more specific counterparts. Change-Id: I614e9a6aa2177f396e5289f3cdb3c35faa0202c9 Reviewed-by: Gunnar Sletta <gunnar.sletta@jollamobile.com>
Diffstat (limited to 'tools/qmljs')
-rw-r--r--tools/qmljs/main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/qmljs/main.cpp b/tools/qmljs/main.cpp
index f13f42881c..aaddfbf904 100644
--- a/tools/qmljs/main.cpp
+++ b/tools/qmljs/main.cpp
@@ -57,7 +57,8 @@
# include "private/qv4isel_masm_p.h"
#endif // V4_ENABLE_JIT
-#include <QtCore>
+#include <QtCore/QCoreApplication>
+#include <QtCore/QFile>
#include <private/qqmljsengine_p.h>
#include <private/qqmljslexer_p.h>
#include <private/qqmljsparser_p.h>