Add proper type to most public API uses of Array
This commit is contained in:
parent
79f82bd742
commit
f8ef38efed
26 changed files with 156 additions and 165 deletions
|
|
@ -1066,9 +1066,9 @@ Array EditorSelection::_get_transformable_selected_nodes() {
|
|||
return ret;
|
||||
}
|
||||
|
||||
Array EditorSelection::get_selected_nodes() {
|
||||
TypedArray<Node> EditorSelection::get_selected_nodes() {
|
||||
|
||||
Array ret;
|
||||
TypedArray<Node> ret;
|
||||
|
||||
for (Map<Node *, Object *>::Element *E = selection.front(); E; E = E->next()) {
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue