diff options
author | Fabian Kosmale <[email protected]> | 2022-02-06 22:13:16 +0100 |
---|---|---|
committer | Fabian Kosmale <[email protected]> | 2022-03-04 08:31:20 +0100 |
commit | ff5accf2fa94135b706b086fb8c4e0fe72668810 (patch) | |
tree | fa0b3c2ff44ef7d2ba1164815970082ab59d7aad | |
parent | 585c890db2de452892f2072d1a8cdeda5decfed3 (diff) |
QtQml: Do not depend on transitive includes
Change-Id: I287a6e63397c2c6140c3bc3e7d83f3212709531e
Reviewed-by: Maximilian Goldstein <[email protected]>
-rw-r--r-- | src/qml/compiler/qv4compilercontext_p.h | 3 | ||||
-rw-r--r-- | src/qml/debugger/qqmldebug.h | 1 | ||||
-rw-r--r-- | src/qml/jit/qv4baselinejit_p.h | 1 | ||||
-rw-r--r-- | src/qml/jsruntime/qv4engine_p.h | 1 | ||||
-rw-r--r-- | src/qml/qml/qqmlcomponent.h | 3 | ||||
-rw-r--r-- | src/qml/qml/qqmlopenmetaobject.cpp | 1 |
6 files changed, 10 insertions, 0 deletions
diff --git a/src/qml/compiler/qv4compilercontext_p.h b/src/qml/compiler/qv4compilercontext_p.h index 59998e531c..4813e2203c 100644 --- a/src/qml/compiler/qv4compilercontext_p.h +++ b/src/qml/compiler/qv4compilercontext_p.h @@ -56,6 +56,9 @@ #include <QtCore/QDateTime> #include <QtCore/QStack> #include <QtCore/QHash> +#include <QtCore/QMap> +#include <QtCore/QSet> +#include <QtCore/QVarLengthArray> #include <memory> diff --git a/src/qml/debugger/qqmldebug.h b/src/qml/debugger/qqmldebug.h index d0ceb28cdc..d2a0570423 100644 --- a/src/qml/debugger/qqmldebug.h +++ b/src/qml/debugger/qqmldebug.h @@ -43,6 +43,7 @@ #include <QtQml/qtqmlglobal.h> #include <QtCore/qstring.h> #include <QtCore/qvariant.h> +#include <QtCore/qhash.h> // QVariantHash QT_BEGIN_NAMESPACE diff --git a/src/qml/jit/qv4baselinejit_p.h b/src/qml/jit/qv4baselinejit_p.h index 35b1f18344..93b1e88a1b 100644 --- a/src/qml/jit/qv4baselinejit_p.h +++ b/src/qml/jit/qv4baselinejit_p.h @@ -55,6 +55,7 @@ #include <private/qv4function_p.h> #include <private/qv4instr_moth_p.h> #include <private/qv4bytecodehandler_p.h> +#include <QtCore/qset.h> #if QT_CONFIG(qml_jit) diff --git a/src/qml/jsruntime/qv4engine_p.h b/src/qml/jsruntime/qv4engine_p.h index 617c7361cf..7f376d2dad 100644 --- a/src/qml/jsruntime/qv4engine_p.h +++ b/src/qml/jsruntime/qv4engine_p.h @@ -60,6 +60,7 @@ #include <private/qqmldelayedcallqueue_p.h> #include <QtCore/qelapsedtimer.h> #include <QtCore/qmutex.h> +#include <QtCore/qset.h> #include "qv4function_p.h" #include <private/qv4compileddata_p.h> diff --git a/src/qml/qml/qqmlcomponent.h b/src/qml/qml/qqmlcomponent.h index e70dae5de8..0d8eef6aca 100644 --- a/src/qml/qml/qqmlcomponent.h +++ b/src/qml/qml/qqmlcomponent.h @@ -40,6 +40,9 @@ #ifndef QQMLCOMPONENT_H #define QQMLCOMPONENT_H +#include <QtCore/qvariant.h> +#include <QtCore/qmap.h> + #include <QtQml/qqml.h> #include <QtQml/qqmlerror.h> diff --git a/src/qml/qml/qqmlopenmetaobject.cpp b/src/qml/qml/qqmlopenmetaobject.cpp index ae227109bb..8b905c2351 100644 --- a/src/qml/qml/qqmlopenmetaobject.cpp +++ b/src/qml/qml/qqmlopenmetaobject.cpp @@ -42,6 +42,7 @@ #include <private/qqmldata_p.h> #include <private/qmetaobjectbuilder_p.h> #include <qdebug.h> +#include <QtCore/qset.h> QT_BEGIN_NAMESPACE |