View | Details | Raw Unified | Return to bug 295050 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/mylyn/internal/tasks/ui/dialogs/TaskRepositoryCredentialsDialog.java (-3 / +3 lines)
Lines 131-137 Link Here
131
			GridDataFactory.fillDefaults()
131
			GridDataFactory.fillDefaults()
132
					.align(SWT.FILL, SWT.CENTER)
132
					.align(SWT.FILL, SWT.CENTER)
133
					.grab(true, false)
133
					.grab(true, false)
134
					.span(2, 1)
134
					.span(3, 1)
135
					.applyTo(labelComposite);
135
					.applyTo(labelComposite);
136
136
137
			Label label = new Label(labelComposite, SWT.NONE);
137
			Label label = new Label(labelComposite, SWT.NONE);
Lines 182-188 Link Here
182
				}
182
				}
183
			});
183
			});
184
		} else {
184
		} else {
185
			new Label(composite, SWT.NONE).setText(""); //$NON-NLS-1$
185
			new Label(composite, SWT.NONE).setText(" "); //$NON-NLS-1$
186
		}
186
		}
187
187
188
		new Label(composite, SWT.NONE).setText(Messages.TaskRepositoryCredentialsDialog_Password);
188
		new Label(composite, SWT.NONE).setText(Messages.TaskRepositoryCredentialsDialog_Password);
Lines 212-218 Link Here
212
				savePassword = savePasswordButton.getSelection();
212
				savePassword = savePasswordButton.getSelection();
213
			}
213
			}
214
		});
214
		});
215
		GridDataFactory.fillDefaults().span(2, 1).applyTo(savePasswordButton);
215
		GridDataFactory.fillDefaults().span(3, 1).applyTo(savePasswordButton);
216
216
217
		createWarningMessage(composite);
217
		createWarningMessage(composite);
218
	}
218
	}

Return to bug 295050