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

[238314] Default user ID on host properties page not disabled

This commit is contained in:
David McKnight 2008-07-08 18:41:00 +00:00
parent 9d586d07dd
commit e0f2f98a47

View file

@ -23,6 +23,7 @@
* Martin Oberhuber (Wind River) - [186779] Fix IRSESystemType.getAdapter()
* Martin Oberhuber (Wind River) - [175680] Deprecate obsolete ISystemRegistry methods
* David McKnight (IBM) - [229610] [api] File transfers should use workspace text file encoding
* David McKnight (IBM) - [238314] Default user ID on host properties page not disabled
*******************************************************************************/
package org.eclipse.rse.ui;
@ -1265,7 +1266,7 @@ public class SystemConnectionForm implements Listener, SelectionListener, Runnab
// ---------------
// default user id
// ---------------
String parentUserId = RSEPreferencesManager.getUserId(systemType.getId());
String parentUserId = RSEPreferencesManager.getDefaultUserId(systemType);
if (textUserId != null) {
textUserId.setInheritedText(parentUserId);
boolean allowEditingOfInherited = ((parentUserId == null) || (parentUserId.length() == 0));