]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/wizards/RegisterRepoWizard.java
Fix single sourcing issue on file download
[gpl/argeo-slc.git] / plugins / org.argeo.slc.client.ui.dist / src / main / java / org / argeo / slc / client / ui / dist / wizards / RegisterRepoWizard.java
index fbc7c639d6c549d9ee9306b1894f652f02864662..3f7f30c6588b7ebd5484c115be5007daa2b1f8f0 100644 (file)
@@ -177,7 +177,7 @@ public class RegisterRepoWizard extends Wizard {
                        uri = createLT(composite, "URI", DEFAULT_URI);
 
                        final Button anonymousLogin = createLC(composite,
-                                       "log as anonymous", true);
+                                       "Log as anonymous", true);
                        anonymousLogin.addSelectionListener(new SelectionListener() {
                                public void widgetSelected(SelectionEvent e) {
                                        if (anonymousLogin.getSelection()) {
@@ -224,7 +224,7 @@ public class RegisterRepoWizard extends Wizard {
 
                /** Creates label and text. */
                protected Text createLT(Composite parent, String label, String initial) {
-                       new Label(parent, SWT.NONE).setText(label);
+                       new Label(parent, SWT.RIGHT).setText(label);
                        Text text = new Text(parent, SWT.SINGLE | SWT.LEAD | SWT.BORDER);
                        text.setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, true));
                        text.setText(initial);
@@ -234,7 +234,7 @@ public class RegisterRepoWizard extends Wizard {
                /** Creates label and check. */
                protected Button createLC(Composite parent, String label,
                                Boolean initial) {
-                       new Label(parent, SWT.NONE).setText(label);
+                       new Label(parent, SWT.RIGHT).setText(label);
                        Button check = new Button(parent, SWT.CHECK);
                        check.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
                        check.setSelection(initial);