summaryrefslogtreecommitdiffstats
path: root/editor/editor_vcs_interface.h
diff options
context:
space:
mode:
authormerumelu <merumelu@protonmail.com>2019-11-19 15:11:03 +0100
committermerumelu <merumelu@protonmail.com>2019-11-19 15:11:03 +0100
commit94fc676019a1af4c3fffc085625884deabce7ae3 (patch)
tree240b702d003b0fe8491830438b5c61ac1127cd1f /editor/editor_vcs_interface.h
parent95f1f4e82a948f064bbbe32812a3f4b5c3c90bb7 (diff)
downloadredot-engine-94fc676019a1af4c3fffc085625884deabce7ae3.tar.gz
Editor: fix typo in VCS plugin method names
Diffstat (limited to 'editor/editor_vcs_interface.h')
-rw-r--r--editor/editor_vcs_interface.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_vcs_interface.h b/editor/editor_vcs_interface.h
index 896193ed92..394a18f974 100644
--- a/editor/editor_vcs_interface.h
+++ b/editor/editor_vcs_interface.h
@@ -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);