You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Rename instance()->instantiate() when it's a verb
This commit is contained in:
@@ -1861,11 +1861,11 @@ ScriptTextEditor::ScriptTextEditor() {
|
||||
highlighter_menu->set_name("highlighter_menu");
|
||||
|
||||
Ref<EditorPlainTextSyntaxHighlighter> plain_highlighter;
|
||||
plain_highlighter.instance();
|
||||
plain_highlighter.instantiate();
|
||||
add_syntax_highlighter(plain_highlighter);
|
||||
|
||||
Ref<EditorStandardSyntaxHighlighter> highlighter;
|
||||
highlighter.instance();
|
||||
highlighter.instantiate();
|
||||
add_syntax_highlighter(highlighter);
|
||||
set_syntax_highlighter(highlighter);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user