mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-06 17:26:01 +02:00
[318052] [remote launch] Properties are not saved/used
This commit is contained in:
parent
adef5a84f7
commit
cbab1664c5
2 changed files with 8 additions and 6 deletions
|
@ -18,6 +18,7 @@
|
||||||
* Anna Dushistova (MontaVista) - [267951] [remotecdt] Support systemTypes without files subsystem
|
* Anna Dushistova (MontaVista) - [267951] [remotecdt] Support systemTypes without files subsystem
|
||||||
* Anna Dushistova (Mentor Graphics) - adapted from RemoteCMainTab
|
* Anna Dushistova (Mentor Graphics) - adapted from RemoteCMainTab
|
||||||
* Anna Dushistova (Mentor Graphics) - moved to org.eclipse.cdt.launch.remote.tabs
|
* 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;
|
package org.eclipse.cdt.launch.remote.tabs;
|
||||||
|
|
||||||
|
@ -169,10 +170,10 @@ public class RemoteCDSFMainTab extends CMainTab {
|
||||||
connectionCombo.addModifyListener(new ModifyListener() {
|
connectionCombo.addModifyListener(new ModifyListener() {
|
||||||
|
|
||||||
public void modifyText(ModifyEvent e) {
|
public void modifyText(ModifyEvent e) {
|
||||||
setDirty(true);
|
|
||||||
updateLaunchConfigurationDialog();
|
|
||||||
useDefaultsFromConnection();
|
useDefaultsFromConnection();
|
||||||
updatePropertiesButton();
|
updatePropertiesButton();
|
||||||
|
setDirty(true);
|
||||||
|
updateLaunchConfigurationDialog();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -479,7 +480,7 @@ public class RemoteCDSFMainTab extends CMainTab {
|
||||||
downloadToTarget = config
|
downloadToTarget = config
|
||||||
.getAttribute(
|
.getAttribute(
|
||||||
IRemoteConnectionConfigurationConstants.ATTR_SKIP_DOWNLOAD_TO_TARGET,
|
IRemoteConnectionConfigurationConstants.ATTR_SKIP_DOWNLOAD_TO_TARGET,
|
||||||
SKIP_DOWNLOAD_TO_REMOTE_DEFAULT);
|
getDefaultSkipDownload());
|
||||||
} catch (CoreException e) {
|
} catch (CoreException e) {
|
||||||
// Ignore for now
|
// Ignore for now
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
* Anna Dushistova (MontaVista) - [267951] [remotecdt] Support systemTypes without files subsystem
|
* 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) - [314659] move remote launch/debug to DSF
|
||||||
* Anna Dushistova (Mentor Graphics) - moved to org.eclipse.cdt.launch.remote.tabs
|
* 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;
|
package org.eclipse.cdt.launch.remote.tabs;
|
||||||
|
@ -187,10 +188,10 @@ public class RemoteCMainTab extends CMainTab {
|
||||||
connectionCombo.addModifyListener(new ModifyListener() {
|
connectionCombo.addModifyListener(new ModifyListener() {
|
||||||
|
|
||||||
public void modifyText(ModifyEvent e) {
|
public void modifyText(ModifyEvent e) {
|
||||||
setDirty(true);
|
|
||||||
updateLaunchConfigurationDialog();
|
|
||||||
useDefaultsFromConnection();
|
useDefaultsFromConnection();
|
||||||
updatePropertiesButton();
|
updatePropertiesButton();
|
||||||
|
setDirty(true);
|
||||||
|
updateLaunchConfigurationDialog();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -557,7 +558,7 @@ public class RemoteCMainTab extends CMainTab {
|
||||||
downloadToTarget = config
|
downloadToTarget = config
|
||||||
.getAttribute(
|
.getAttribute(
|
||||||
IRemoteConnectionConfigurationConstants.ATTR_SKIP_DOWNLOAD_TO_TARGET,
|
IRemoteConnectionConfigurationConstants.ATTR_SKIP_DOWNLOAD_TO_TARGET,
|
||||||
SKIP_DOWNLOAD_TO_REMOTE_DEFAULT);
|
getDefaultSkipDownload());
|
||||||
} catch (CoreException e) {
|
} catch (CoreException e) {
|
||||||
// Ignore for now
|
// Ignore for now
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue