diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-09-04 08:12:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-04 08:12:29 +0200 |
commit | b5d2d0a9a502416a03f303fc30bee8a7ec8e93e2 (patch) | |
tree | 754f5946625e043fedbdb83503e52d2c9fbe3159 /modules/gdscript | |
parent | 0f5e575d6026ff4f6d8a4d28fbd8e7eca77aeef5 (diff) | |
parent | 52a7be4eefbafcc983766bd80a87752b678c1c17 (diff) |
Merge pull request #10939 from neikeq/fix-overridden-external-editors
Fixes language overridden external editors
Diffstat (limited to 'modules/gdscript')
-rw-r--r-- | modules/gdscript/gd_script.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/gdscript/gd_script.h b/modules/gdscript/gd_script.h index 6f05a4770b..5e1a8b19ac 100644 --- a/modules/gdscript/gd_script.h +++ b/modules/gdscript/gd_script.h @@ -389,7 +389,6 @@ public: virtual bool can_inherit_from_file() { return true; } virtual int find_function(const String &p_function, const String &p_code) const; virtual String make_function(const String &p_class, const String &p_name, const PoolStringArray &p_args) const; - virtual Error open_in_external_editor(const Ref<Script> &p_script, int p_line, int p_col) { return OK; } virtual Error complete_code(const String &p_code, const String &p_base_path, Object *p_owner, List<String> *r_options, bool &r_forced, String &r_call_hint); #ifdef TOOLS_ENABLED virtual Error lookup_code(const String &p_code, const String &p_symbol, const String &p_base_path, Object *p_owner, LookupResult &r_result); |