mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 06:01:14 +00:00
Update deferred calls to use Callables
This commit is contained in:
parent
8297ec949b
commit
0e8f90f4c8
92 changed files with 192 additions and 350 deletions
|
|
@ -456,7 +456,7 @@ Variant GDScriptTextDocument::declaration(const Dictionary &p_params) {
|
|||
id = "class_global:" + symbol->native_class + ":" + symbol->name;
|
||||
break;
|
||||
}
|
||||
call_deferred(SNAME("show_native_symbol_in_editor"), id);
|
||||
callable_mp(this, &GDScriptTextDocument::show_native_symbol_in_editor).call_deferred(id);
|
||||
} else {
|
||||
notify_client_show_symbol(symbol);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue