summaryrefslogtreecommitdiffstats
path: root/scene/property_list_helper.cpp
diff options
context:
space:
mode:
authorYuri Rubinsky <chaosus89@gmail.com>2024-07-03 10:39:18 +0300
committerYuri Rubinsky <chaosus89@gmail.com>2024-07-09 19:38:52 +0300
commitaf5fc8354b60f0d354194155c36e317ccb69e97b (patch)
tree37ea5675d05dca99589d6a1a5905a3f6a079dcaa /scene/property_list_helper.cpp
parent26d1577f3985363faab48a65e9a0d9eed0e26d86 (diff)
downloadredot-engine-af5fc8354b60f0d354194155c36e317ccb69e97b.tar.gz
Fix a bunch of orphan StringName errors at ProjectSettings/Editor exit
Diffstat (limited to 'scene/property_list_helper.cpp')
-rw-r--r--scene/property_list_helper.cpp19
1 files changed, 16 insertions, 3 deletions
diff --git a/scene/property_list_helper.cpp b/scene/property_list_helper.cpp
index ce258ee8c3..f840aaa759 100644
--- a/scene/property_list_helper.cpp
+++ b/scene/property_list_helper.cpp
@@ -30,6 +30,19 @@
#include "property_list_helper.h"
+Vector<PropertyListHelper *> PropertyListHelper::base_helpers; // static
+
+void PropertyListHelper::clear_base_helpers() { // static
+ for (PropertyListHelper *helper : base_helpers) {
+ helper->clear();
+ }
+ base_helpers.clear();
+}
+
+void PropertyListHelper::register_base_helper(PropertyListHelper *p_helper) { // static
+ base_helpers.push_back(p_helper);
+}
+
const PropertyListHelper::Property *PropertyListHelper::_get_property(const String &p_property, int *r_index) const {
const Vector<String> components = p_property.rsplit("/", true, 1);
if (components.size() < 2 || !components[0].begins_with(prefix)) {
@@ -176,9 +189,8 @@ bool PropertyListHelper::property_get_revert(const String &p_property, Variant &
return false;
}
-PropertyListHelper::~PropertyListHelper() {
- // No object = it's the main helper. Do a cleanup.
- if (!object && is_initialized()) {
+void PropertyListHelper::clear() {
+ if (is_initialized()) {
memdelete(array_length_getter);
for (const KeyValue<String, Property> &E : property_list) {
@@ -187,5 +199,6 @@ PropertyListHelper::~PropertyListHelper() {
memdelete(E.value.getter);
}
}
+ property_list.clear();
}
}