Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrsuen2007-05-27 13:52:23 +0000
committerrsuen2007-05-27 13:52:23 +0000
commitba53d45166212ee19b72657117baf1f10d0451f4 (patch)
tree38adb6ba260ed57af3460a8dc578d6e10781e8e3 /examples
parentf3e58679ac8139b66959d616e76a5840ce306048 (diff)
downloadorg.eclipse.ecf-ba53d45166212ee19b72657117baf1f10d0451f4.tar.gz
org.eclipse.ecf-ba53d45166212ee19b72657117baf1f10d0451f4.tar.xz
org.eclipse.ecf-ba53d45166212ee19b72657117baf1f10d0451f4.zip
Don't draw the automatic login button since it's currently not supported.
Diffstat (limited to 'examples')
-rw-r--r--examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/internal/example/collab/ui/JoinGroupWizardPage.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/internal/example/collab/ui/JoinGroupWizardPage.java b/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/internal/example/collab/ui/JoinGroupWizardPage.java
index 85315e7c2..5c54b724d 100644
--- a/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/internal/example/collab/ui/JoinGroupWizardPage.java
+++ b/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/internal/example/collab/ui/JoinGroupWizardPage.java
@@ -73,7 +73,7 @@ public class JoinGroupWizardPage extends WizardPage {
protected String namespace = null;
- private Button autoLogin = null;
+// private Button autoLogin = null;
private boolean autoLoginFlag = false;
public boolean getAutoLoginFlag() {
@@ -173,16 +173,16 @@ public class JoinGroupWizardPage extends WizardPage {
nickname_label.setVisible(false);
}
- autoLogin = new Button(container, SWT.CHECK);
- autoLogin.setText("Login &automatically at startup");
- autoLogin.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_END));
- autoLogin.addSelectionListener(new SelectionAdapter() {
- public void widgetSelected(SelectionEvent e) {
- autoLoginFlag = autoLogin.getSelection();
- }
- });
// XXX disallow autologin for now
- autoLogin.setEnabled(false);
+// autoLogin = new Button(container, SWT.CHECK);
+// autoLogin.setText("Login &automatically at startup");
+// autoLogin.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_END));
+// autoLogin.addSelectionListener(new SelectionAdapter() {
+// public void widgetSelected(SelectionEvent e) {
+// autoLoginFlag = autoLogin.getSelection();
+// }
+// });
+// autoLogin.setEnabled(false);
fillCombo();
restoreDialogSettings();

Back to the top