diff options
author | Gilles Roudière <gilles.roudiere@gmail.com> | 2023-06-16 19:24:04 +0200 |
---|---|---|
committer | Gilles Roudière <gilles.roudiere@gmail.com> | 2023-06-16 19:24:04 +0200 |
commit | 41890ff9c3028d3b05d993f8f7ec42c346824304 (patch) | |
tree | 8752d668791312000feba818b70e39417e0d64e2 | |
parent | 9b4d367621a087635c9b3585ba1a8018859161f4 (diff) | |
download | redot-engine-41890ff9c3028d3b05d993f8f7ec42c346824304.tar.gz |
Fix compilation on gcc13
-rw-r--r-- | editor/editor_inspector.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/editor/editor_inspector.cpp b/editor/editor_inspector.cpp index 3f6db778c5..e3514b4691 100644 --- a/editor/editor_inspector.cpp +++ b/editor/editor_inspector.cpp @@ -3690,8 +3690,9 @@ void EditorInspector::_edit_set(const String &p_name, const Variant &p_value, bo Variant v_undo_redo = undo_redo; Variant v_object = object; Variant v_name = p_name; - for (int i = 0; i < EditorNode::get_singleton()->get_editor_data().get_undo_redo_inspector_hook_callback().size(); i++) { - const Callable &callback = EditorNode::get_singleton()->get_editor_data().get_undo_redo_inspector_hook_callback()[i]; + const Vector<Callable> &callbacks = EditorNode::get_singleton()->get_editor_data().get_undo_redo_inspector_hook_callback(); + for (int i = 0; i < callbacks.size(); i++) { + const Callable &callback = callbacks[i]; const Variant *p_arguments[] = { &v_undo_redo, &v_object, &v_name, &p_value }; Variant return_value; |