# HG changeset patch # User dadubrow # Date 1262967915 21600 # Node ID bde477f39c26296263b4130970489359f60adca8 # Parent a0609ea7401a09525ed1e27a7a4655eb1c7539df fix bug with storing id for default connection diff -r a0609ea7401a -r bde477f39c26 debuggercdi/com.nokia.cdt.debug.cw.symbian/src/com/nokia/cdt/debug/cw/symbian/SettingsData.java --- a/debuggercdi/com.nokia.cdt.debug.cw.symbian/src/com/nokia/cdt/debug/cw/symbian/SettingsData.java Thu Jan 07 11:03:57 2010 -0600 +++ b/debuggercdi/com.nokia.cdt.debug.cw.symbian/src/com/nokia/cdt/debug/cw/symbian/SettingsData.java Fri Jan 08 10:25:15 2010 -0600 @@ -494,7 +494,7 @@ configuration.setAttribute(RemoteConnectionsTRKHelper.USES_REMOTE_CONNECTIONS_ATTRIBUTE, true); IConnection defaultConnection = RemoteConnectionsTRKHelper.getFirstCompatibleConnection(); if (defaultConnection != null) - configuration.setAttribute(RemoteConnectionsTRKHelper.CONNECTION_ATTRIBUTE, defaultConnection.getIdentifier()); + RemoteConnectionsTRKHelper.setRemoteConnectionAttribute(configuration, defaultConnection); } public static void setFileTransferTab(ILaunchConfigurationWorkingCopy configuration, IProject project) {