summaryrefslogtreecommitdiffstats
path: root/editor/plugins/text_editor.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2020-09-10 22:02:44 +0200
committerGitHub <noreply@github.com>2020-09-10 22:02:44 +0200
commitbeb9ebcda00ac32a1dc8ec338aa61d7f0b03edc5 (patch)
tree7ab5b8369ef1e72dc698564778597ddc38362666 /editor/plugins/text_editor.h
parentd782405bcfa03b63de78927ce077f495ae285d11 (diff)
parentc0da97d29cbabcce261ddc948df099f0ecc6ee47 (diff)
downloadredot-engine-beb9ebcda00ac32a1dc8ec338aa61d7f0b03edc5.tar.gz
Merge pull request #40973 from Paulb23/code_edit
Add CodeEdit and TextEdit gutter system
Diffstat (limited to 'editor/plugins/text_editor.h')
-rw-r--r--editor/plugins/text_editor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/text_editor.h b/editor/plugins/text_editor.h
index f3e9e599cf..ea425bd033 100644
--- a/editor/plugins/text_editor.h
+++ b/editor/plugins/text_editor.h
@@ -119,7 +119,7 @@ public:
virtual Variant get_edit_state() override;
virtual void set_edit_state(const Variant &p_state) override;
virtual Vector<String> get_functions() override;
- virtual void get_breakpoints(List<int> *p_breakpoints) override;
+ virtual Array get_breakpoints() override;
virtual void goto_line(int p_line, bool p_with_error = false) override;
void goto_line_selection(int p_line, int p_begin, int p_end);
virtual void set_executing_line(int p_line) override;