1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-15 04:55:22 +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

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