diff options
author | Twarit Waikar <wtwarit@gmail.com> | 2022-12-20 15:36:14 +0530 |
---|---|---|
committer | Twarit Waikar <wtwarit@gmail.com> | 2022-12-20 15:42:31 +0530 |
commit | 18df2f36e8bbab621f2cae9035c77fffac57d1e2 (patch) | |
tree | d1c044f9d489510409e04583f8faa2653e9147d3 /editor/editor_vcs_interface.h | |
parent | dcb3754db09b7b8c35aae1fedbc485b91e9f9508 (diff) | |
download | redot-engine-18df2f36e8bbab621f2cae9035c77fffac57d1e2.tar.gz |
VCS: Fix GDExtension return types for VCS after Array type hardening
Diffstat (limited to 'editor/editor_vcs_interface.h')
-rw-r--r-- | editor/editor_vcs_interface.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_vcs_interface.h b/editor/editor_vcs_interface.h index 5d4901cefa..c93fe4a672 100644 --- a/editor/editor_vcs_interface.h +++ b/editor/editor_vcs_interface.h @@ -117,8 +117,8 @@ protected: GDVIRTUAL0R(bool, _shut_down); GDVIRTUAL0R(String, _get_vcs_name); GDVIRTUAL1R(TypedArray<Dictionary>, _get_previous_commits, int); - GDVIRTUAL0R(TypedArray<Dictionary>, _get_branch_list); - GDVIRTUAL0R(TypedArray<Dictionary>, _get_remotes); + GDVIRTUAL0R(TypedArray<String>, _get_branch_list); + GDVIRTUAL0R(TypedArray<String>, _get_remotes); GDVIRTUAL1(_create_branch, String); GDVIRTUAL1(_remove_branch, String); GDVIRTUAL2(_create_remote, String, String); |