diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-02-27 22:49:16 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-02-28 14:24:09 +0100 |
commit | 09a6a2d8f83473b4893b4dd04ff31972e267d5d6 (patch) | |
tree | 1cacdc4c74f9cc941f214b5cb7a488f5e6875e2c /modules/visual_script/visual_script_property_selector.h | |
parent | b8f08b42e7ca111a910f04475cb4d18435a17de1 (diff) | |
download | redot-engine-09a6a2d8f83473b4893b4dd04ff31972e267d5d6.tar.gz |
Signals: Port more uses of connect_compat
Those were problematic as they call a method of their parent class,
but callable_mp does not allow that unless it's public.
To solve it, we declare a local class that calls the parent class'
method, which now needs to be protected to be accessible in the
derived class.
Diffstat (limited to 'modules/visual_script/visual_script_property_selector.h')
-rw-r--r-- | modules/visual_script/visual_script_property_selector.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/modules/visual_script/visual_script_property_selector.h b/modules/visual_script/visual_script_property_selector.h index a1eb0b842c..f438ca1f5b 100644 --- a/modules/visual_script/visual_script_property_selector.h +++ b/modules/visual_script/visual_script_property_selector.h @@ -41,16 +41,16 @@ class VisualScriptPropertySelector : public ConfirmationDialog { LineEdit *search_box; Tree *search_options; + void _text_changed(const String &p_newtext); + void _sbox_input(const Ref<InputEvent> &p_ie); void _update_search(); void create_visualscript_item(const String &name, TreeItem *const root, const String &search_input, const String &text); - void get_visual_node_names(const String &root_filter, const Set<String> &p_modifiers, bool &found, TreeItem *const root, LineEdit *const search_box); - void _sbox_input(const Ref<InputEvent> &p_ie); - void _confirmed(); - void _text_changed(const String &p_newtext); + void _item_selected(); + void _hide_requested(); EditorHelpBit *help_bit; @@ -65,8 +65,6 @@ class VisualScriptPropertySelector : public ConfirmationDialog { bool virtuals_only; bool seq_connect; - void _item_selected(); - Vector<Variant::Type> type_filter; protected: |