summaryrefslogtreecommitdiffstats
path: root/scene/gui/tree.h
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2022-08-08 00:52:20 +0200
committerkobewi <kobewi4e@gmail.com>2022-08-24 12:53:36 +0200
commitf7f4873ed08d6b465c8108f7ce0c1cb76f9caf2f (patch)
treef5644c01ab66109f8f342d784c3a38240aa295ef /scene/gui/tree.h
parent0626ce50cfd35d1eb81c6c9627f8540be9636b4b (diff)
downloadredot-engine-f7f4873ed08d6b465c8108f7ce0c1cb76f9caf2f.tar.gz
Replace Array return types with TypedArray 3
Diffstat (limited to 'scene/gui/tree.h')
-rw-r--r--scene/gui/tree.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/tree.h b/scene/gui/tree.h
index bcc2419b80..7f9c00b1b9 100644
--- a/scene/gui/tree.h
+++ b/scene/gui/tree.h
@@ -339,7 +339,7 @@ public:
TreeItem *get_child(int p_idx);
int get_visible_child_count();
int get_child_count();
- Array get_children();
+ TypedArray<TreeItem> get_children();
int get_index();
#ifdef DEV_ENABLED