diff options
author | Paulb23 <p_batty@hotmail.co.uk> | 2020-07-28 14:33:46 +0100 |
---|---|---|
committer | Paulb23 <p_batty@hotmail.co.uk> | 2020-09-10 20:35:28 +0100 |
commit | 907f9f2a8444be195d489ae614f88018a10cf6ce (patch) | |
tree | 32cfb8f312501e2a0b3b7aeb5c2e203cb8fa1049 /scene/resources/syntax_highlighter.h | |
parent | 1353ed5e44a725308292ce44d24d7cf76b0af272 (diff) | |
download | redot-engine-907f9f2a8444be195d489ae614f88018a10cf6ce.tar.gz |
Changed line_edited_from(from) to lines_edit_from(from, to)
Diffstat (limited to 'scene/resources/syntax_highlighter.h')
-rw-r--r-- | scene/resources/syntax_highlighter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/resources/syntax_highlighter.h b/scene/resources/syntax_highlighter.h index 40a8870b45..720227a256 100644 --- a/scene/resources/syntax_highlighter.h +++ b/scene/resources/syntax_highlighter.h @@ -40,7 +40,7 @@ class SyntaxHighlighter : public Resource { private: Map<int, Dictionary> highlighting_cache; - void _line_edited_from(int p_line); + void _lines_edited_from(int p_from_line, int p_to_line); protected: ObjectID text_edit_instance_id; // For validity check |