mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +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
|
@ -283,7 +283,7 @@ Variant Performance::MonitorCall::call(bool &r_error, String &r_error_message) {
|
|||
int argc = _arguments.size();
|
||||
Variant return_value;
|
||||
Callable::CallError error;
|
||||
_callable.call(args, argc, return_value, error);
|
||||
_callable.callp(args, argc, return_value, error);
|
||||
r_error = (error.error != Callable::CallError::CALL_OK);
|
||||
if (r_error) {
|
||||
r_error_message = Variant::get_callable_error_text(_callable, args, argc, error);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue