diff options
author | lupoDharkael <izhe@hotmail.es> | 2019-04-16 22:27:13 +0200 |
---|---|---|
committer | lupoDharkael <izhe@hotmail.es> | 2019-04-16 22:27:13 +0200 |
commit | 145a45fd3f15b3d7929e5e702b8828186fed34fb (patch) | |
tree | 77cc3f3b341aa53afbe262453980b57de08cd9db /modules/gdnative/include | |
parent | 1e2b3ac407a39b6dc4b2835bfed86f50c7e71ddc (diff) |
Fix code completion not working with class_name
Diffstat (limited to 'modules/gdnative/include')
-rw-r--r-- | modules/gdnative/include/pluginscript/godot_pluginscript.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdnative/include/pluginscript/godot_pluginscript.h b/modules/gdnative/include/pluginscript/godot_pluginscript.h index 968f91ae9f..a9e83d1524 100644 --- a/modules/gdnative/include/pluginscript/godot_pluginscript.h +++ b/modules/gdnative/include/pluginscript/godot_pluginscript.h @@ -136,7 +136,7 @@ typedef struct { godot_bool (*validate)(godot_pluginscript_language_data *p_data, const godot_string *p_script, int *r_line_error, int *r_col_error, godot_string *r_test_error, const godot_string *p_path, godot_pool_string_array *r_functions); int (*find_function)(godot_pluginscript_language_data *p_data, const godot_string *p_function, const godot_string *p_code); // Can be NULL godot_string (*make_function)(godot_pluginscript_language_data *p_data, const godot_string *p_class, const godot_string *p_name, const godot_pool_string_array *p_args); - godot_error (*complete_code)(godot_pluginscript_language_data *p_data, const godot_string *p_code, const godot_string *p_base_path, godot_object *p_owner, godot_array *r_options, godot_bool *r_force, godot_string *r_call_hint); + godot_error (*complete_code)(godot_pluginscript_language_data *p_data, const godot_string *p_code, const godot_string *p_path, godot_object *p_owner, godot_array *r_options, godot_bool *r_force, godot_string *r_call_hint); void (*auto_indent_code)(godot_pluginscript_language_data *p_data, godot_string *p_code, int p_from_line, int p_to_line); void (*add_global_constant)(godot_pluginscript_language_data *p_data, const godot_string *p_variable, const godot_variant *p_value); |