From 75e45cc2df06e9d85f4646146b34f8baf945ad03 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint <Friedemann.Kleint@theqtcompany.com> Date: Wed, 7 Jan 2015 09:30:52 +0100 Subject: [PATCH] Add missing includes. After 90e7cc172a7521396bb2d49720ee4ceb9a9390b3, QStringList no longer includes QDataStream. This also reverts commit c1be0fbe7d17b67c330c0c90eb9ba8a0536c2121, which did the same in a worse way. Change-Id: Ib10622b0da3b3450d29fc65dc5356fde75444a8f Reviewed-by: Olivier Goffart <ogoffart@woboq.com> (cherry picked from qttools/376501ae5a86859821c0e89b2e8fbc9906d11e07) Reviewed-by: Friedemann Kleint <Friedemann.Kleint@theqtcompany.com> --- qmake/library/qmakeevaluator.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qmake/library/qmakeevaluator.h b/qmake/library/qmakeevaluator.h index b61c0661930..0a653ad6649 100644 --- a/qmake/library/qmakeevaluator.h +++ b/qmake/library/qmakeevaluator.h @@ -41,7 +41,6 @@ #include "qmakeparser.h" #include "ioutils.h" -#include <qiodevice.h> #include <qlist.h> #include <qlinkedlist.h> #include <qmap.h> @@ -52,6 +51,8 @@ #include <qshareddata.h> #ifndef QT_BOOTSTRAPPED # include <qprocess.h> +#else +# include <qiodevice.h> #endif #ifdef PROEVALUATOR_THREAD_SAFE # include <qmutex.h> -- GitLab