Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cross/org.eclipse.cdt.launch.remote/src/org/eclipse/cdt/launch/remote/tabs/RemoteCDSFMainTab.java7
-rw-r--r--cross/org.eclipse.cdt.launch.remote/src/org/eclipse/cdt/launch/remote/tabs/RemoteCMainTab.java7
2 files changed, 8 insertions, 6 deletions
diff --git a/cross/org.eclipse.cdt.launch.remote/src/org/eclipse/cdt/launch/remote/tabs/RemoteCDSFMainTab.java b/cross/org.eclipse.cdt.launch.remote/src/org/eclipse/cdt/launch/remote/tabs/RemoteCDSFMainTab.java
index 8651a7608f4..1765a40b4bb 100644
--- a/cross/org.eclipse.cdt.launch.remote/src/org/eclipse/cdt/launch/remote/tabs/RemoteCDSFMainTab.java
+++ b/cross/org.eclipse.cdt.launch.remote/src/org/eclipse/cdt/launch/remote/tabs/RemoteCDSFMainTab.java
@@ -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
}
diff --git a/cross/org.eclipse.cdt.launch.remote/src/org/eclipse/cdt/launch/remote/tabs/RemoteCMainTab.java b/cross/org.eclipse.cdt.launch.remote/src/org/eclipse/cdt/launch/remote/tabs/RemoteCMainTab.java
index a316aca059a..59ffa928612 100644
--- a/cross/org.eclipse.cdt.launch.remote/src/org/eclipse/cdt/launch/remote/tabs/RemoteCMainTab.java
+++ b/cross/org.eclipse.cdt.launch.remote/src/org/eclipse/cdt/launch/remote/tabs/RemoteCMainTab.java
@@ -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
}

Back to the top