diff options
author | Jake Petroules <jake.petroules@qt.io> | 2016-11-30 16:39:20 -0800 |
---|---|---|
committer | Joerg Bornemann <joerg.bornemann@qt.io> | 2017-01-04 10:41:49 +0000 |
commit | 00a3f9a3ba44dda2257a226c620f7cfcdc3a62a8 (patch) | |
tree | ed8115eb9810288ab3d76bebd0c0c36e8b5d72cd /src/app/qbs-setup-toolchains/commandlineparser.cpp | |
parent | 1b01fd8d1b7729ebeb071fe1cec6dd65256f132e (diff) | |
download | qbs-00a3f9a3ba44dda2257a226c620f7cfcdc3a62a8.tar.gz |
Change style of #includes of Qt headers
By using q<lowercase>.h headers, we become more bootstrap-friendly, as no
full syncqt is required any more.
In the same go, prefix all includes with the module name. This helps
grep-based analysis of which parts of Qt are used and where. It's also
consistent with Qt's public headers (where syncqt enforces the style).
Testdata and examples are excluded from the change, as they are not
relevant for bootstrapping.
Change-Id: I9539b1d795e87fca6e5fc6c91acbb775b79208d9
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'src/app/qbs-setup-toolchains/commandlineparser.cpp')
-rw-r--r-- | src/app/qbs-setup-toolchains/commandlineparser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/qbs-setup-toolchains/commandlineparser.cpp b/src/app/qbs-setup-toolchains/commandlineparser.cpp index 84f7abe9a..498cabdc7 100644 --- a/src/app/qbs-setup-toolchains/commandlineparser.cpp +++ b/src/app/qbs-setup-toolchains/commandlineparser.cpp @@ -41,7 +41,7 @@ #include <logging/translator.h> #include <tools/error.h> -#include <QFileInfo> +#include <QtCore/qfileinfo.h> using qbs::Internal::Tr; |