1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-05 08:46:02 +02:00

[318052] [remote launch] Properties are not saved/used

This commit is contained in:
Ted Williams 2010-07-19 16:11:24 +00:00
parent adef5a84f7
commit cbab1664c5
2 changed files with 8 additions and 6 deletions

View file

@ -18,6 +18,7 @@
* Anna Dushistova (MontaVista) - [267951] [remotecdt] Support systemTypes without files subsystem
* Anna Dushistova (Mentor Graphics) - adapted from RemoteCMainTab
* Anna Dushistova (Mentor Graphics) - moved to org.eclipse.cdt.launch.remote.tabs
* Anna Dushistova (Mentor Graphics) - [318052] [remote launch] Properties are not saved/used
*******************************************************************************/
package org.eclipse.cdt.launch.remote.tabs;
@ -169,10 +170,10 @@ public class RemoteCDSFMainTab extends CMainTab {
connectionCombo.addModifyListener(new ModifyListener() {
public void modifyText(ModifyEvent e) {
setDirty(true);
updateLaunchConfigurationDialog();
useDefaultsFromConnection();
updatePropertiesButton();
setDirty(true);
updateLaunchConfigurationDialog();
}
});
@ -479,7 +480,7 @@ public class RemoteCDSFMainTab extends CMainTab {
downloadToTarget = config
.getAttribute(
IRemoteConnectionConfigurationConstants.ATTR_SKIP_DOWNLOAD_TO_TARGET,
SKIP_DOWNLOAD_TO_REMOTE_DEFAULT);
getDefaultSkipDownload());
} catch (CoreException e) {
// Ignore for now
}

View file

@ -18,6 +18,7 @@
* Anna Dushistova (MontaVista) - [267951] [remotecdt] Support systemTypes without files subsystem
* Anna Dushistova (Mentor Graphics) - [314659] move remote launch/debug to DSF
* Anna Dushistova (Mentor Graphics) - moved to org.eclipse.cdt.launch.remote.tabs
* Anna Dushistova (Mentor Graphics) - [318052] [remote launch] Properties are not saved/used
*******************************************************************************/
package org.eclipse.cdt.launch.remote.tabs;
@ -187,10 +188,10 @@ public class RemoteCMainTab extends CMainTab {
connectionCombo.addModifyListener(new ModifyListener() {
public void modifyText(ModifyEvent e) {
setDirty(true);
updateLaunchConfigurationDialog();
useDefaultsFromConnection();
updatePropertiesButton();
setDirty(true);
updateLaunchConfigurationDialog();
}
});
@ -557,7 +558,7 @@ public class RemoteCMainTab extends CMainTab {
downloadToTarget = config
.getAttribute(
IRemoteConnectionConfigurationConstants.ATTR_SKIP_DOWNLOAD_TO_TARGET,
SKIP_DOWNLOAD_TO_REMOTE_DEFAULT);
getDefaultSkipDownload());
} catch (CoreException e) {
// Ignore for now
}