summaryrefslogtreecommitdiffstats
path: root/editor/debugger/editor_debugger_node.h
diff options
context:
space:
mode:
authorAdam Scott <ascott.ca@gmail.com>2024-08-27 12:38:44 -0400
committerAdam Scott <ascott.ca@gmail.com>2024-08-27 13:37:37 -0400
commitdfe7ef7964e708ad7d59ed000e820c53d7b9b730 (patch)
treea40183f50e347209637aa8bacc1b2f84b28ad19a /editor/debugger/editor_debugger_node.h
parent142d33211cb4276dee6f797117981af983471b9e (diff)
downloadredot-engine-dfe7ef7964e708ad7d59ed000e820c53d7b9b730.tar.gz
Fix weird plural public method names
Diffstat (limited to 'editor/debugger/editor_debugger_node.h')
-rw-r--r--editor/debugger/editor_debugger_node.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/debugger/editor_debugger_node.h b/editor/debugger/editor_debugger_node.h
index aef1d84758..12e097f652 100644
--- a/editor/debugger/editor_debugger_node.h
+++ b/editor/debugger/editor_debugger_node.h
@@ -193,8 +193,8 @@ public:
// Remote inspector/edit.
void request_remote_tree();
- static void _method_changeds(void *p_ud, Object *p_base, const StringName &p_name, const Variant **p_args, int p_argcount);
- static void _property_changeds(void *p_ud, Object *p_base, const StringName &p_property, const Variant &p_value);
+ static void _methods_changed(void *p_ud, Object *p_base, const StringName &p_name, const Variant **p_args, int p_argcount);
+ static void _properties_changed(void *p_ud, Object *p_base, const StringName &p_property, const Variant &p_value);
// LiveDebug
void set_live_debugging(bool p_enabled);