mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-08 08:45:44 +02:00
Bug 427153 - Update Jsch connection name when modified
Change-Id: Ibeb2ac8d3bd06ff242ffcac93d82e46f7b4a6344 Signed-off-by: Chris Navarro <cmnavarr@illinois.edu>
This commit is contained in:
parent
c863256c2f
commit
fa67010349
1 changed files with 1 additions and 8 deletions
|
@ -35,7 +35,6 @@ import org.eclipse.swt.graphics.Point;
|
||||||
import org.eclipse.swt.layout.GridData;
|
import org.eclipse.swt.layout.GridData;
|
||||||
import org.eclipse.swt.layout.GridLayout;
|
import org.eclipse.swt.layout.GridLayout;
|
||||||
import org.eclipse.swt.widgets.Button;
|
import org.eclipse.swt.widgets.Button;
|
||||||
import org.eclipse.swt.widgets.Combo;
|
|
||||||
import org.eclipse.swt.widgets.Composite;
|
import org.eclipse.swt.widgets.Composite;
|
||||||
import org.eclipse.swt.widgets.Group;
|
import org.eclipse.swt.widgets.Group;
|
||||||
import org.eclipse.swt.widgets.Label;
|
import org.eclipse.swt.widgets.Label;
|
||||||
|
@ -61,7 +60,6 @@ public class JSchConnectionPage extends WizardPage {
|
||||||
private Text fPassphraseText;
|
private Text fPassphraseText;
|
||||||
private Text fPortText;
|
private Text fPortText;
|
||||||
private Text fTimeoutText;
|
private Text fTimeoutText;
|
||||||
private Combo fCipherCombo;
|
|
||||||
private RemoteFileWidget fFileWidget;
|
private RemoteFileWidget fFileWidget;
|
||||||
|
|
||||||
private String fInitialName = "Remote Host"; //$NON-NLS-1$
|
private String fInitialName = "Remote Host"; //$NON-NLS-1$
|
||||||
|
@ -127,12 +125,6 @@ public class JSchConnectionPage extends WizardPage {
|
||||||
fTimeoutText.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, true, false));
|
fTimeoutText.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, true, false));
|
||||||
fTimeoutText.setTextLimit(5);
|
fTimeoutText.setTextLimit(5);
|
||||||
|
|
||||||
// Label cipherLabel = new Label(advancedComp, SWT.NONE);
|
|
||||||
// cipherLabel.setText("Cipher type:");
|
|
||||||
// cipherLabel.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, false, false));
|
|
||||||
// fCipherCombo = new Combo(advancedComp, SWT.NONE);
|
|
||||||
// fCipherCombo.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, true, false));
|
|
||||||
|
|
||||||
expComp.setClient(advancedComp);
|
expComp.setClient(advancedComp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -378,6 +370,7 @@ public class JSchConnectionPage extends WizardPage {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (fConnection != null) {
|
if (fConnection != null) {
|
||||||
|
fConnection.setName(fConnectionName.getText());
|
||||||
fConnection.setAddress(fHostText.getText().trim());
|
fConnection.setAddress(fHostText.getText().trim());
|
||||||
fConnection.setUsername(fUserText.getText().trim());
|
fConnection.setUsername(fUserText.getText().trim());
|
||||||
fConnection.setPassword(fPasswordText.getText().trim());
|
fConnection.setPassword(fPasswordText.getText().trim());
|
||||||
|
|
Loading…
Add table
Reference in a new issue