mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
Fixed Bug 102016 [Open Type/ Class Browsing] No namespace displayed
This commit is contained in:
parent
e2773cd720
commit
a638aed7e5
1 changed files with 2 additions and 2 deletions
|
@ -52,8 +52,8 @@ public class IndexerTypesJob2 extends IndexerJob2 {
|
|||
if (monitor.isCanceled())
|
||||
throw new InterruptedException();
|
||||
|
||||
IEntryResult[] namespaceEntries = fProjectIndex.getEntries( IIndex.NAMESPACE, IIndex.ANY, IIndex.DECLARATION );
|
||||
IQueryResult[] namespacePaths = fProjectIndex.getPrefix(IIndex.NAMESPACE, IIndex.ANY, IIndex.DECLARATION );
|
||||
IEntryResult[] namespaceEntries = fProjectIndex.getEntries( IIndex.NAMESPACE, IIndex.ANY, IIndex.DEFINITION );
|
||||
IQueryResult[] namespacePaths = fProjectIndex.getPrefix(IIndex.NAMESPACE, IIndex.ANY, IIndex.DEFINITION );
|
||||
// input.queryEntriesPrefixedBy(Index.encodeEntry(IIndex.NAMESPACE, IIndex.ANY, IIndex.DECLARATION));
|
||||
if (namespaceEntries != null) {
|
||||
//TODO subprogress monitor
|
||||
|
|
Loading…
Add table
Reference in a new issue