diff options
author | Ulf Hermann <[email protected]> | 2024-05-29 11:46:47 +0200 |
---|---|---|
committer | Ulf Hermann <[email protected]> | 2024-05-30 22:28:44 +0200 |
commit | 51ba15bc1b744270017bcb7ca3501a09a915edb1 (patch) | |
tree | 84706c4fb83d8f083843459cf7d02b28e6a6309b /src/qml/jsruntime/qv4function.cpp | |
parent | 1c2ff06654bf33dffbceaadcf777134a9121d5e4 (diff) |
Clean up some includes
In particular, don't include qqmllocale_p.h, qqmlbind_p.h and
qv4sequenceobject_p.h where we don't need them. Also, don't qualify
private includes by their module name so that we can move them to other
modules more easily.
Change-Id: Ic13592cef574424498ce9e7708d6fbaa681b81f3
Reviewed-by: Sami Shalayel <[email protected]>
Diffstat (limited to 'src/qml/jsruntime/qv4function.cpp')
-rw-r--r-- | src/qml/jsruntime/qv4function.cpp | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/src/qml/jsruntime/qv4function.cpp b/src/qml/jsruntime/qv4function.cpp index ae36b563e0..82646e2822 100644 --- a/src/qml/jsruntime/qv4function.cpp +++ b/src/qml/jsruntime/qv4function.cpp @@ -1,20 +1,18 @@ // Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only -#include "qml/qqmlprivate.h" #include "qv4function_p.h" -#include "qv4managed_p.h" -#include "qv4string_p.h" -#include "qv4value_p.h" -#include "qv4engine_p.h" -#include <private/qv4mm_p.h> -#include <private/qv4identifiertable_p.h> + +#include <private/qqmlpropertycachecreator_p.h> +#include <private/qqmltype_p_p.h> + +#include <private/qv4engine_p.h> #include <private/qv4functiontable_p.h> -#include <assembler/MacroAssemblerCodeRef.h> -#include <private/qv4vme_moth_p.h> -#include <private/qqmlglobal_p.h> +#include <private/qv4identifiertable_p.h> #include <private/qv4jscall_p.h> -#include <private/qqmlpropertycachecreator_p.h> +#include <private/qv4vme_moth_p.h> + +#include <assembler/MacroAssemblerCodeRef.h> QT_BEGIN_NAMESPACE |