diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-01-11 13:54:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-11 13:54:22 +0100 |
commit | 6d48943768690c40da34d9b091baa87c1b9811fb (patch) | |
tree | 507898a7814bda69d655706a3ef5d691fbd8440e /modules/gdscript | |
parent | c17413f15974b8c78948ddd57736660affe16798 (diff) | |
parent | e995d5c3789c02d48cfbdee15329b44847cccac1 (diff) |
Merge pull request #43980 from gvekan/fix-missing-function-hints
Fix missing function hints
Diffstat (limited to 'modules/gdscript')
-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 8ea51c61fb..b17971cf93 100644 --- a/modules/gdscript/gdscript_editor.cpp +++ b/modules/gdscript/gdscript_editor.cpp @@ -2345,7 +2345,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; |