From 89cb8ad03cab4817489acef43fb0da4420bb258c Mon Sep 17 00:00:00 2001 From: cxl Date: Sun, 31 May 2015 06:58:19 +0000 Subject: [PATCH] .cpp git-svn-id: svn://ultimatepp.org/upp/trunk@8492 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/ide/Assist.cpp | 3 +++ 1 file changed, 3 insertions(+) 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); } }