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 /editor/connections_dialog.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 'editor/connections_dialog.h')
-rw-r--r-- | editor/connections_dialog.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/connections_dialog.h b/editor/connections_dialog.h index a4ed68b44e..988a8a1271 100644 --- a/editor/connections_dialog.h +++ b/editor/connections_dialog.h @@ -105,6 +105,8 @@ private: void ok_pressed(); void _cancel_pressed(); + void _item_activated(); + void _text_entered(const String &_text); void _tree_node_selected(); void _add_bind(); void _remove_bind(); |