diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2020-09-10 22:02:44 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-10 22:02:44 +0200 |
| commit | beb9ebcda00ac32a1dc8ec338aa61d7f0b03edc5 (patch) | |
| tree | 7ab5b8369ef1e72dc698564778597ddc38362666 /scene/resources/syntax_highlighter.h | |
| parent | d782405bcfa03b63de78927ce077f495ae285d11 (diff) | |
| parent | c0da97d29cbabcce261ddc948df099f0ecc6ee47 (diff) | |
| download | redot-engine-beb9ebcda00ac32a1dc8ec338aa61d7f0b03edc5.tar.gz | |
Merge pull request #40973 from Paulb23/code_edit
Add CodeEdit and TextEdit gutter system
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 |
