You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-12 13:20:55 +00:00
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.
This commit is contained in:
@@ -60,6 +60,7 @@ class CreateDialog : public ConfirmationDialog {
|
||||
Set<StringName> type_blacklist;
|
||||
|
||||
void _item_selected();
|
||||
void _hide_requested();
|
||||
|
||||
void _update_search();
|
||||
void _update_favorite_list();
|
||||
|
||||
Reference in New Issue
Block a user