mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-01 14:15:23 +02:00
2004-09-21 Alain Magloire
Duplication in the CView ILibraryReferece. * src/org/eclipse/cdt/internal/ui/cview/CViewContentProvider.java
This commit is contained in:
parent
cf9a72a6da
commit
8ec09a9e37
2 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
2004-09-21 Alain Magloire
|
||||
Duplication in the CView ILibraryReferece.
|
||||
* src/org/eclipse/cdt/internal/ui/cview/CViewContentProvider.java
|
||||
|
||||
2004-09-16 Chris Wiebe
|
||||
|
||||
refactor messages out of internal.ui.search.CSearchMessages
|
||||
|
|
|
@ -61,9 +61,12 @@ public class CViewContentProvider extends CElementContentProvider {
|
|||
extras = getArchives((IArchiveContainer)element);
|
||||
} else if (element instanceof IIncludeReference) {
|
||||
extras = getIncludeReferenceChildren((IIncludeReference)element);
|
||||
} else if (element instanceof ILibraryReference) {
|
||||
extras = ((ILibraryReference)element).getChildren();
|
||||
}
|
||||
/*
|
||||
* Do not to this for now, since ILibraryReference is an Archive.
|
||||
else if (element instanceof ILibraryReference) {
|
||||
extras = ((ILibraryReference)element).getChildren();
|
||||
}*/
|
||||
} catch (CModelException e) {
|
||||
extras = null;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue