1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 15:45:25 +02:00

[fix] system profile selection combo empty on second invocation of new connection wizard

This commit is contained in:
Uwe Stieber 2007-02-20 09:51:30 +00:00
parent e6c3895d55
commit d4c9e1702a

View file

@ -646,7 +646,9 @@ public class SystemConnectionForm
if (!updateMode)
{
profileCombo = SystemWidgetHelpers.createReadonlyCombo(
composite_prompts,null,SystemResources.RESID_CONNECTION_PROFILE_TIP);
composite_prompts,null,SystemResources.RESID_CONNECTION_PROFILE_TIP);
if (defaultProfileNames != null) profileCombo.setItems(defaultProfileNames);
if (defaultProfile != null) setProfileNamePreSelection(defaultProfile);
SystemWidgetHelpers.setHelp(profileCombo, RSEUIPlugin.HELPPREFIX + "ccon0001"); //$NON-NLS-1$
}
}