mirror of
https://github.com/godotengine/godot.git
synced 2025-10-31 21:51:22 +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:
parent
b8f08b42e7
commit
09a6a2d8f8
19 changed files with 79 additions and 41 deletions
|
|
@ -50,6 +50,7 @@ class EditorDirDialog : public ConfirmationDialog {
|
|||
bool updating;
|
||||
|
||||
void _item_collapsed(Object *p_item);
|
||||
void _item_activated();
|
||||
void _update_dir(TreeItem *p_item, EditorFileSystemDirectory *p_dir, const String &p_select_path = String());
|
||||
|
||||
void _make_dir();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue