Revert "Do not expand the list of candidates when resolving fully qualified ids"

This reverts commit 84ba24ac71.

It might work now cause of the fix done in commit
f3767148c0.
This commit is contained in:
Thorbjørn Lindeijer
2009-04-09 13:52:03 +02:00
parent 4bf4b4521e
commit 6f3c9f7002

View File

@@ -176,7 +176,7 @@ QList<Symbol *> LookupContext::resolve(Name *name, const QList<Scope *> &visible
scopes.clear();
foreach (Symbol *candidate, candidates) {
if (ScopedSymbol *scoped = candidate->asScopedSymbol()) {
scopes.append(scoped->members());
expand(scoped->members(), visibleScopes, &scopes);
}
}
}