diff options
author | Marc Gilleron <marc.gilleron@gmail.com> | 2022-10-24 22:07:02 +0100 |
---|---|---|
committer | Marc Gilleron <marc.gilleron@gmail.com> | 2022-10-24 22:07:02 +0100 |
commit | 7543a5e01451979b5ec72e95e34beb53f6440267 (patch) | |
tree | 5f836ccb52745d9e753ec69444e635c8b9642845 /editor/editor_properties_array_dict.cpp | |
parent | 040f49ed6e71a6e7f23d763c4b56095cbf319ef7 (diff) | |
download | redot-engine-7543a5e01451979b5ec72e95e34beb53f6440267.tar.gz |
Rename queue_delete => queue_free
# Conflicts:
# editor/plugins/tiles/tiles_editor_plugin.cpp
Diffstat (limited to 'editor/editor_properties_array_dict.cpp')
-rw-r--r-- | editor/editor_properties_array_dict.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/editor_properties_array_dict.cpp b/editor/editor_properties_array_dict.cpp index d98ad117d7..a69c1f0d93 100644 --- a/editor/editor_properties_array_dict.cpp +++ b/editor/editor_properties_array_dict.cpp @@ -293,7 +293,7 @@ void EditorPropertyArray::update_property() { continue; // Don't remove the property that the user is moving. } - child->queue_delete(); // Button still needed after pressed is called. + child->queue_free(); // Button still needed after pressed is called. property_vbox->remove_child(child); } } @@ -861,7 +861,7 @@ void EditorPropertyDictionary::update_property() { } else { // Queue children for deletion, deleting immediately might cause errors. for (int i = property_vbox->get_child_count() - 1; i >= 0; i--) { - property_vbox->get_child(i)->queue_delete(); + property_vbox->get_child(i)->queue_free(); } } @@ -1349,7 +1349,7 @@ void EditorPropertyLocalizableString::update_property() { } else { // Queue children for deletion, deleting immediately might cause errors. for (int i = property_vbox->get_child_count() - 1; i >= 0; i--) { - property_vbox->get_child(i)->queue_delete(); + property_vbox->get_child(i)->queue_free(); } } |