diff options
author | Gustav <gusan092@student.liu.se> | 2020-11-30 09:26:32 +0100 |
---|---|---|
committer | Gustav <gusan092@student.liu.se> | 2020-11-30 09:26:32 +0100 |
commit | e995d5c3789c02d48cfbdee15329b44847cccac1 (patch) | |
tree | 714b95a15d7fbd4ecaada9a527c4f6b3d4f55be7 | |
parent | 0167bfa530bb4c19ff237d2f12927c60ac452ad7 (diff) |
Fix missing function hints
-rw-r--r-- | modules/gdscript/gdscript_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_editor.cpp b/modules/gdscript/gdscript_editor.cpp index a426046797..1bfbfdfc3a 100644 --- a/modules/gdscript/gdscript_editor.cpp +++ b/modules/gdscript/gdscript_editor.cpp @@ -2309,7 +2309,7 @@ static void _find_call_arguments(GDScriptParser::CompletionContext &p_context, c GDScriptParser::DataType base_type; bool _static = false; const GDScriptParser::CallNode *call = static_cast<const GDScriptParser::CallNode *>(p_call); - GDScriptParser::Node::Type callee_type = GDScriptParser::Node::NONE; + GDScriptParser::Node::Type callee_type = call->get_callee_type(); GDScriptCompletionIdentifier connect_base; |