summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2024-05-13 16:56:03 +0200
committerkobewi <kobewi4e@gmail.com>2024-05-13 23:41:07 +0200
commit413c11357d039a03a8dca440a01951a637ae936b (patch)
treee96f5b865d7158aa69fcf1e422ffafdb59dc2411 /core
parentde196227e17126fa18716c4ed8e61108584116dc (diff)
downloadredot-engine-413c11357d039a03a8dca440a01951a637ae936b.tar.gz
Use Core/Scene stringnames consistently
Diffstat (limited to 'core')
-rw-r--r--core/config/project_settings.cpp1
-rw-r--r--core/io/marshalls.cpp1
-rw-r--r--core/io/packed_data_container.cpp1
-rw-r--r--core/io/resource.cpp1
-rw-r--r--core/object/class_db.cpp1
-rw-r--r--core/object/message_queue.cpp1
-rw-r--r--core/object/object.cpp1
-rw-r--r--core/object/script_language.cpp1
-rw-r--r--core/register_core_types.cpp1
-rw-r--r--core/variant/variant.cpp1
-rw-r--r--core/variant/variant.h1
-rw-r--r--core/variant/variant_call.cpp1
-rw-r--r--core/variant/variant_construct.h1
-rw-r--r--core/variant/variant_op.h1
-rw-r--r--core/variant/variant_setget.h1
-rw-r--r--core/variant/variant_utility.cpp1
16 files changed, 1 insertions, 15 deletions
diff --git a/core/config/project_settings.cpp b/core/config/project_settings.cpp
index a116c9c270..91d2f5d0c0 100644
--- a/core/config/project_settings.cpp
+++ b/core/config/project_settings.cpp
@@ -31,7 +31,6 @@
#include "project_settings.h"
#include "core/core_bind.h" // For Compression enum.
-#include "core/core_string_names.h"
#include "core/input/input_map.h"
#include "core/io/config_file.h"
#include "core/io/dir_access.h"
diff --git a/core/io/marshalls.cpp b/core/io/marshalls.cpp
index 1928f86d6a..c0d18d0120 100644
--- a/core/io/marshalls.cpp
+++ b/core/io/marshalls.cpp
@@ -30,7 +30,6 @@
#include "marshalls.h"
-#include "core/core_string_names.h"
#include "core/io/resource_loader.h"
#include "core/object/ref_counted.h"
#include "core/object/script_language.h"
diff --git a/core/io/packed_data_container.cpp b/core/io/packed_data_container.cpp
index b20279c9ac..ca236ce05c 100644
--- a/core/io/packed_data_container.cpp
+++ b/core/io/packed_data_container.cpp
@@ -30,7 +30,6 @@
#include "packed_data_container.h"
-#include "core/core_string_names.h"
#include "core/io/marshalls.h"
Variant PackedDataContainer::getvar(const Variant &p_key, bool *r_valid) const {
diff --git a/core/io/resource.cpp b/core/io/resource.cpp
index 24ff0e83d2..573692f41e 100644
--- a/core/io/resource.cpp
+++ b/core/io/resource.cpp
@@ -30,7 +30,6 @@
#include "resource.h"
-#include "core/core_string_names.h"
#include "core/io/file_access.h"
#include "core/io/resource_loader.h"
#include "core/math/math_funcs.h"
diff --git a/core/object/class_db.cpp b/core/object/class_db.cpp
index 7ea26c3fc5..e25703b93f 100644
--- a/core/object/class_db.cpp
+++ b/core/object/class_db.cpp
@@ -31,7 +31,6 @@
#include "class_db.h"
#include "core/config/engine.h"
-#include "core/core_string_names.h"
#include "core/io/resource_loader.h"
#include "core/object/script_language.h"
#include "core/os/mutex.h"
diff --git a/core/object/message_queue.cpp b/core/object/message_queue.cpp
index 6fab934395..062c3fc702 100644
--- a/core/object/message_queue.cpp
+++ b/core/object/message_queue.cpp
@@ -31,7 +31,6 @@
#include "message_queue.h"
#include "core/config/project_settings.h"
-#include "core/core_string_names.h"
#include "core/object/class_db.h"
#include "core/object/script_language.h"
diff --git a/core/object/object.cpp b/core/object/object.cpp
index 57f8766509..303624e6d7 100644
--- a/core/object/object.cpp
+++ b/core/object/object.cpp
@@ -31,7 +31,6 @@
#include "object.h"
#include "object.compat.inc"
-#include "core/core_string_names.h"
#include "core/extension/gdextension_manager.h"
#include "core/io/resource.h"
#include "core/object/class_db.h"
diff --git a/core/object/script_language.cpp b/core/object/script_language.cpp
index 820296e66d..eb7d560a5d 100644
--- a/core/object/script_language.cpp
+++ b/core/object/script_language.cpp
@@ -31,7 +31,6 @@
#include "script_language.h"
#include "core/config/project_settings.h"
-#include "core/core_string_names.h"
#include "core/debugger/engine_debugger.h"
#include "core/debugger/script_debugger.h"
#include "core/io/resource_loader.h"
diff --git a/core/register_core_types.cpp b/core/register_core_types.cpp
index 4c1ed8a69a..8a55e4de8f 100644
--- a/core/register_core_types.cpp
+++ b/core/register_core_types.cpp
@@ -33,7 +33,6 @@
#include "core/config/engine.h"
#include "core/config/project_settings.h"
#include "core/core_bind.h"
-#include "core/core_string_names.h"
#include "core/crypto/aes_context.h"
#include "core/crypto/crypto.h"
#include "core/crypto/hashing_context.h"
diff --git a/core/variant/variant.cpp b/core/variant/variant.cpp
index 8be00b1358..30a8facd67 100644
--- a/core/variant/variant.cpp
+++ b/core/variant/variant.cpp
@@ -30,7 +30,6 @@
#include "variant.h"
-#include "core/core_string_names.h"
#include "core/debugger/engine_debugger.h"
#include "core/io/json.h"
#include "core/io/marshalls.h"
diff --git a/core/variant/variant.h b/core/variant/variant.h
index 821edcfedf..6494313722 100644
--- a/core/variant/variant.h
+++ b/core/variant/variant.h
@@ -31,6 +31,7 @@
#ifndef VARIANT_H
#define VARIANT_H
+#include "core/core_string_names.h"
#include "core/input/input_enums.h"
#include "core/io/ip_address.h"
#include "core/math/aabb.h"
diff --git a/core/variant/variant_call.cpp b/core/variant/variant_call.cpp
index 9b7777f480..099653f938 100644
--- a/core/variant/variant_call.cpp
+++ b/core/variant/variant_call.cpp
@@ -30,7 +30,6 @@
#include "variant.h"
-#include "core/core_string_names.h"
#include "core/crypto/crypto_core.h"
#include "core/debugger/engine_debugger.h"
#include "core/io/compression.h"
diff --git a/core/variant/variant_construct.h b/core/variant/variant_construct.h
index 82995620aa..b824044b82 100644
--- a/core/variant/variant_construct.h
+++ b/core/variant/variant_construct.h
@@ -33,7 +33,6 @@
#include "variant.h"
-#include "core/core_string_names.h"
#include "core/crypto/crypto_core.h"
#include "core/debugger/engine_debugger.h"
#include "core/io/compression.h"
diff --git a/core/variant/variant_op.h b/core/variant/variant_op.h
index 3142f49fc6..0b94d79a97 100644
--- a/core/variant/variant_op.h
+++ b/core/variant/variant_op.h
@@ -33,7 +33,6 @@
#include "variant.h"
-#include "core/core_string_names.h"
#include "core/debugger/engine_debugger.h"
#include "core/object/class_db.h"
diff --git a/core/variant/variant_setget.h b/core/variant/variant_setget.h
index 176967344f..cdacbad373 100644
--- a/core/variant/variant_setget.h
+++ b/core/variant/variant_setget.h
@@ -33,7 +33,6 @@
#include "variant.h"
-#include "core/core_string_names.h"
#include "core/debugger/engine_debugger.h"
#include "core/object/class_db.h"
#include "core/templates/local_vector.h"
diff --git a/core/variant/variant_utility.cpp b/core/variant/variant_utility.cpp
index 5522b5ba88..7534a154a1 100644
--- a/core/variant/variant_utility.cpp
+++ b/core/variant/variant_utility.cpp
@@ -30,7 +30,6 @@
#include "variant_utility.h"
-#include "core/core_string_names.h"
#include "core/io/marshalls.h"
#include "core/object/ref_counted.h"
#include "core/os/os.h"