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

[165674] sorting subsystem configurations to be aphabetical in order select firsst by default

This commit is contained in:
David McKnight 2007-07-17 18:36:59 +00:00
parent 5c4e5d6b25
commit 1f63baca56

View file

@ -115,11 +115,13 @@ public class SubSystemServiceWizardPage extends AbstractSystemNewConnectionWizar
IServiceSubSystemConfiguration factory = factories[i];
_serviceElements[i] = new FactoryServiceElement(dummyHost, factory);
if (factory == currentFactory)
//if (factory == currentFactory)
if (i == 0) // use first
{
_serviceElements[i].setSelected(true);
}
}
}
return _serviceElements;