diff --git a/uppsrc/ide/Assist.cpp b/uppsrc/ide/Assist.cpp index 83c10b953..41d458a35 100644 --- a/uppsrc/ide/Assist.cpp +++ b/uppsrc/ide/Assist.cpp @@ -462,6 +462,9 @@ void AssistEditor::Assist() else { GatherItems(parser.current_scope, false, in_types, true); Index in_types2; + Vector usings = Split(parser.context.namespace_using, ';'); + for(int i = 0; i < usings.GetCount(); i++) + GatherItems(usings[i], false, in_types2, true); GatherItems("", false, in_types2, true); } }