diff options
| author | Juan Linietsky <reduzio@gmail.com> | 2021-08-22 09:31:44 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-22 09:31:44 -0300 |
| commit | a73b5fa1124ab91401f965f0bf6fd48407b79c4e (patch) | |
| tree | fee311b675144ae3a5fecc58857912ea250b1bb7 /modules/gdscript | |
| parent | 2a5c64f2a188360d09f793c0dbd35e1911b4c073 (diff) | |
| parent | 3682978aee06cd5cf26ba462a4e44d352e9e0cd1 (diff) | |
| download | redot-engine-a73b5fa1124ab91401f965f0bf6fd48407b79c4e.tar.gz | |
Merge pull request #51970 from reduz/implement-gdvirtuals-everywhere
Replace BIND_VMETHOD by new GDVIRTUAL syntax
Diffstat (limited to 'modules/gdscript')
| -rw-r--r-- | modules/gdscript/editor/gdscript_highlighter.cpp | 2 | ||||
| -rw-r--r-- | modules/gdscript/editor/gdscript_highlighter.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/gdscript/editor/gdscript_highlighter.cpp b/modules/gdscript/editor/gdscript_highlighter.cpp index 0b1cb5d502..8b9bd2659d 100644 --- a/modules/gdscript/editor/gdscript_highlighter.cpp +++ b/modules/gdscript/editor/gdscript_highlighter.cpp @@ -45,7 +45,7 @@ static bool _is_bin_symbol(char32_t c) { return (c == '0' || c == '1'); } -Dictionary GDScriptSyntaxHighlighter::_get_line_syntax_highlighting(int p_line) { +Dictionary GDScriptSyntaxHighlighter::_get_line_syntax_highlighting_impl(int p_line) { Dictionary color_map; Type next_type = NONE; diff --git a/modules/gdscript/editor/gdscript_highlighter.h b/modules/gdscript/editor/gdscript_highlighter.h index d07c182aa6..fabd64dab8 100644 --- a/modules/gdscript/editor/gdscript_highlighter.h +++ b/modules/gdscript/editor/gdscript_highlighter.h @@ -80,7 +80,7 @@ private: public: virtual void _update_cache() override; - virtual Dictionary _get_line_syntax_highlighting(int p_line) override; + virtual Dictionary _get_line_syntax_highlighting_impl(int p_line) override; virtual String _get_name() const override; virtual Array _get_supported_languages() const override; |
