From 145a45fd3f15b3d7929e5e702b8828186fed34fb Mon Sep 17 00:00:00 2001 From: lupoDharkael Date: Tue, 16 Apr 2019 22:27:13 +0200 Subject: Fix code completion not working with class_name --- modules/mono/csharp_script.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/mono') diff --git a/modules/mono/csharp_script.h b/modules/mono/csharp_script.h index 050527d52b..cf99bc0dca 100644 --- a/modules/mono/csharp_script.h +++ b/modules/mono/csharp_script.h @@ -368,7 +368,7 @@ public: virtual bool supports_builtin_mode() const; /* TODO? */ virtual int find_function(const String &p_function, const String &p_code) const { return -1; } virtual String make_function(const String &p_class, const String &p_name, const PoolStringArray &p_args) const; - /* TODO? */ Error complete_code(const String &p_code, const String &p_base_path, Object *p_owner, List *r_options, String &r_call_hint) { return ERR_UNAVAILABLE; } + /* TODO? */ Error complete_code(const String &p_code, const String &p_path, Object *p_owner, List *r_options, String &r_call_hint) { return ERR_UNAVAILABLE; } virtual String _get_indentation() const; /* TODO? */ virtual void auto_indent_code(String &p_code, int p_from_line, int p_to_line) const {} /* TODO */ virtual void add_global_constant(const StringName &p_variable, const Variant &p_value) {} -- cgit v1.2.3