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
|
|
@ -2089,7 +2089,7 @@ EditorHelp::EditorHelp() {
|
|||
class_desc->connect("finished", callable_mp(this, &EditorHelp::_class_desc_finished));
|
||||
class_desc->connect("meta_clicked", callable_mp(this, &EditorHelp::_class_desc_select));
|
||||
class_desc->connect("gui_input", callable_mp(this, &EditorHelp::_class_desc_input));
|
||||
class_desc->connect("resized", callable_mp(this, &EditorHelp::_class_desc_resized), varray(false));
|
||||
class_desc->connect("resized", callable_mp(this, &EditorHelp::_class_desc_resized).bind(false));
|
||||
_class_desc_resized(false);
|
||||
|
||||
// Added second so it opens at the bottom so it won't offset the entire widget.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue