You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Rename queue_delete => queue_free
# Conflicts: # editor/plugins/tiles/tiles_editor_plugin.cpp
This commit is contained in:
@@ -260,7 +260,7 @@ void EditorPropertyFontMetaOverride::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();
|
||||
}
|
||||
button_add = nullptr;
|
||||
}
|
||||
@@ -457,7 +457,7 @@ void EditorPropertyOTVariation::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();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -662,7 +662,7 @@ void EditorPropertyOTFeatures::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();
|
||||
}
|
||||
button_add = nullptr;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user