Editor: fix typo in VCS plugin method names
This commit is contained in:
@ -29,6 +29,7 @@
|
||||
/*************************************************************************/
|
||||
|
||||
#include "version_control_editor_plugin.h"
|
||||
|
||||
#include "core/script_language.h"
|
||||
#include "editor/editor_file_system.h"
|
||||
#include "editor/editor_node.h"
|
||||
@ -398,9 +399,9 @@ void VersionControlEditorPlugin::shut_down() {
|
||||
}
|
||||
}
|
||||
|
||||
bool VersionControlEditorPlugin::get_is_vcs_intialized() const {
|
||||
bool VersionControlEditorPlugin::is_vcs_initialized() const {
|
||||
|
||||
return EditorVCSInterface::get_singleton() ? EditorVCSInterface::get_singleton()->get_is_vcs_intialized() : false;
|
||||
return EditorVCSInterface::get_singleton() ? EditorVCSInterface::get_singleton()->is_vcs_initialized() : false;
|
||||
}
|
||||
|
||||
const String VersionControlEditorPlugin::get_vcs_name() const {
|
||||
|
||||
Reference in New Issue
Block a user