diff options
author | kobewi <kobewi4e@gmail.com> | 2022-01-22 13:50:20 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2022-01-22 14:04:35 +0100 |
commit | 1422c756edd966f71edd477da5e7c7a6afed569c (patch) | |
tree | 6ce46bb45e2b506d02bfb172ffa56fac9130bb64 /editor | |
parent | df62b92d387533024a8cf9352dccde931f416b9b (diff) |
Rename request_code_completion signal
Diffstat (limited to 'editor')
-rw-r--r-- | editor/code_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp index 4669e56e20..fb36bfc5e5 100644 --- a/editor/code_editor.cpp +++ b/editor/code_editor.cpp @@ -1909,7 +1909,7 @@ CodeTextEditor::CodeTextEditor() { text_editor->connect("gui_input", callable_mp(this, &CodeTextEditor::_text_editor_gui_input)); text_editor->connect("caret_changed", callable_mp(this, &CodeTextEditor::_line_col_changed)); text_editor->connect("text_changed", callable_mp(this, &CodeTextEditor::_text_changed)); - text_editor->connect("request_code_completion", callable_mp(this, &CodeTextEditor::_complete_request)); + text_editor->connect("code_completion_requested", callable_mp(this, &CodeTextEditor::_complete_request)); TypedArray<String> cs; cs.push_back("."); cs.push_back(","); |