Browse Source

Fix mismatched signatures for GDScriptLanguage::complete_code

Rémi Verschelde 8 years ago
parent
commit
3ea0943f64
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/gdscript/gd_editor.cpp

+ 1 - 1
modules/gdscript/gd_editor.cpp

@@ -2485,7 +2485,7 @@ Error GDScriptLanguage::complete_code(const String &p_code, const String &p_base
 
 
 #else
 #else
 
 
-Error GDScriptLanguage::complete_code(const String &p_code, const String &p_base_path, Object *p_owner, List<String> *r_options, String &r_call_hint) {
+Error GDScriptLanguage::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) {
 	return OK;
 	return OK;
 }
 }