Editor: fix typo in VCS plugin method names

This commit is contained in:
merumelu
2019-11-19 15:11:03 +01:00
parent 95f1f4e82a
commit 94fc676019
5 changed files with 12 additions and 11 deletions

View File

@ -48,7 +48,7 @@ protected:
// Implemented by addons as end points for the proxy functions
bool _initialize(String p_project_root_path);
bool _get_is_vcs_intialized();
bool _is_vcs_initialized();
Dictionary _get_modified_files_data();
void _stage_file(String p_file_path);
void _unstage_file(String p_file_path);
@ -66,7 +66,7 @@ public:
// Proxy functions to the editor for use
bool initialize(String p_project_root_path);
bool get_is_vcs_intialized();
bool is_vcs_initialized();
Dictionary get_modified_files_data();
void stage_file(String p_file_path);
void unstage_file(String p_file_path);