| 1165 | } |
| 1166 | |
| 1167 | void ScriptTextEditor::_code_complete_scripts(void *p_ud, const String &p_code, List<ScriptLanguage::CodeCompletionOption> *r_options, bool &r_force) { |
| 1168 | ScriptTextEditor *ste = (ScriptTextEditor *)p_ud; |
| 1169 | ste->_code_complete_script(p_code, r_options, r_force); |
| 1170 | } |
| 1171 | |
| 1172 | void ScriptTextEditor::_code_complete_script(const String &p_code, List<ScriptLanguage::CodeCompletionOption> *r_options, bool &r_force) { |
| 1173 | if (color_panel->is_visible()) { |
nothing calls this directly
no test coverage detected