mirror of
https://github.com/godotengine/godot.git
synced 2025-10-28 20:24:41 +00:00
Remove Signal connect binds
Remove the optional argument p_binds from `Object::connect` since it was deprecated by Callable.bind(). Changed all uses of it to Callable.bind()
This commit is contained in:
parent
14d021287b
commit
d4433ae6d3
149 changed files with 645 additions and 708 deletions
|
|
@ -275,7 +275,7 @@ void TextEditor::update_settings() {
|
|||
void TextEditor::set_tooltip_request_func(const Callable &p_toolip_callback) {
|
||||
Variant args[1] = { this };
|
||||
const Variant *argp[] = { &args[0] };
|
||||
code_editor->get_text_editor()->set_tooltip_request_func(p_toolip_callback.bind(argp, 1));
|
||||
code_editor->get_text_editor()->set_tooltip_request_func(p_toolip_callback.bindp(argp, 1));
|
||||
}
|
||||
|
||||
Control *TextEditor::get_edit_menu() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue