summaryrefslogtreecommitdiffstats
path: root/editor/editor_properties.h
diff options
context:
space:
mode:
authorMuller-Castro <37383316+Muller-Castro@users.noreply.github.com>2024-02-15 13:25:58 -0300
committerMuller-Castro <37383316+Muller-Castro@users.noreply.github.com>2024-02-26 15:28:15 -0300
commit1638c1b28f4b79546864872ef25b3c28f4860b56 (patch)
treedacb36ef5b2f92dae0ccab7b40afaeeedf432ae5 /editor/editor_properties.h
parentbb6b06c81343073f10cbbd2af515cf0dac1e6549 (diff)
downloadredot-engine-1638c1b28f4b79546864872ef25b3c28f4860b56.tar.gz
Add const lvalue ref to editor/* container parameters
Diffstat (limited to 'editor/editor_properties.h')
-rw-r--r--editor/editor_properties.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/editor_properties.h b/editor/editor_properties.h
index b7ae4bd1ca..fa759d5d19 100644
--- a/editor/editor_properties.h
+++ b/editor/editor_properties.h
@@ -116,11 +116,11 @@ class EditorPropertyTextEnum : public EditorProperty {
bool string_name = false;
bool loose_mode = false;
- void _emit_changed_value(String p_string);
+ void _emit_changed_value(const String &p_string);
void _option_selected(int p_which);
void _edit_custom_value();
- void _custom_value_submitted(String p_value);
+ void _custom_value_submitted(const String &p_value);
void _custom_value_accepted();
void _custom_value_canceled();
@@ -677,7 +677,7 @@ protected:
public:
virtual void update_property() override;
- void setup(const NodePath &p_base_hint, Vector<StringName> p_valid_types, bool p_use_path_from_scene_root = true, bool p_editing_node = false);
+ void setup(const NodePath &p_base_hint, const Vector<StringName> &p_valid_types, bool p_use_path_from_scene_root = true, bool p_editing_node = false);
EditorPropertyNodePath();
};