diff options
author | Geequlim <geequlim@gmail.com> | 2019-06-13 17:17:20 +0800 |
---|---|---|
committer | Geequlim <geequlim@gmail.com> | 2019-07-04 14:00:14 +0800 |
commit | ed7ed52151a9eca2a60a418881bd7065529acb66 (patch) | |
tree | 914511435507d93e8cfafa1f395c5e96d8ae3eb0 /modules/gdscript/gdscript.h | |
parent | 2293c612e6c0913b6999080c9f2fa77227348818 (diff) | |
download | redot-engine-ed7ed52151a9eca2a60a418881bd7065529acb66.tar.gz |
Parse more informations for code completion
Diffstat (limited to 'modules/gdscript/gdscript.h')
-rw-r--r-- | modules/gdscript/gdscript.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript.h b/modules/gdscript/gdscript.h index 1756f6eabc..a5ad23c75d 100644 --- a/modules/gdscript/gdscript.h +++ b/modules/gdscript/gdscript.h @@ -458,7 +458,7 @@ 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 complete_code(const String &p_code, const String &p_path, Object *p_owner, List<String> *r_options, bool &r_forced, String &r_call_hint); + virtual Error complete_code(const String &p_code, const String &p_path, Object *p_owner, List<ScriptCodeCompletionOption> *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_path, Object *p_owner, LookupResult &r_result); #endif |