summaryrefslogtreecommitdiffstats
path: root/editor/editor_data.cpp
diff options
context:
space:
mode:
authorMicky <micheledevita2@gmail.com>2022-09-01 15:44:42 +0200
committerMicky <micheledevita2@gmail.com>2022-09-06 19:00:33 +0200
commitdd26ecdd31c01ab02a64b589fa169dbba6c124d5 (patch)
tree34351710f0c06aaa2f0359233a5280b7088e2531 /editor/editor_data.cpp
parent0c4d578bdf0630d81ab4ef13a8e596c6980b3df9 (diff)
downloadredot-engine-dd26ecdd31c01ab02a64b589fa169dbba6c124d5.tar.gz
Rename CONNECT_ONESHOT TO CONNECT_ONE_SHOT
For consistency. Every other exposed `one_shot` is spaced out like this.
Diffstat (limited to 'editor/editor_data.cpp')
-rw-r--r--editor/editor_data.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_data.cpp b/editor/editor_data.cpp
index 231ae198d2..1febec2c04 100644
--- a/editor/editor_data.cpp
+++ b/editor/editor_data.cpp
@@ -1056,7 +1056,7 @@ void EditorSelection::add_node(Node *p_node) {
}
selection[p_node] = meta;
- p_node->connect("tree_exiting", callable_mp(this, &EditorSelection::_node_removed).bind(p_node), CONNECT_ONESHOT);
+ p_node->connect("tree_exiting", callable_mp(this, &EditorSelection::_node_removed).bind(p_node), CONNECT_ONE_SHOT);
}
void EditorSelection::remove_node(Node *p_node) {