1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

CoreModel.getDefault().

This commit is contained in:
Alain Magloire 2002-11-27 04:50:50 +00:00
parent ff99394101
commit c82cfaaf0e

View file

@ -94,7 +94,7 @@ public class ReferenceBlock implements IWizardTab {
ArrayList aList = new ArrayList(15);
final IProject[] projects = ((IWorkspace)element).getRoot().getProjects();
for (int i = 0; i < projects.length; i++) {
if (CoreModel.hasCNature(projects[i])) {
if (CoreModel.getDefault().hasCNature(projects[i])) {
// Do not show the actual project being look at
if ((project != null) && project.equals(projects[i])) {
continue;