Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 176300
Collapse All | Expand All

(-)src/org/eclipse/mylar/tasks/ui/wizards/AbstractRepositorySettingsPage.java (-4 / +4 lines)
Lines 341-347 Link Here
341
		if (needsEncoding()) {
341
		if (needsEncoding()) {
342
			Label encodingLabel = new Label(container, SWT.HORIZONTAL);
342
			Label encodingLabel = new Label(container, SWT.HORIZONTAL);
343
			encodingLabel.setText("Character Encoding:");
343
			encodingLabel.setText("Character Encoding:");
344
			GridDataFactory.fillDefaults().align(SWT.TOP, SWT.CENTER).applyTo(encodingLabel);
344
			GridDataFactory.fillDefaults().align(SWT.CENTER, SWT.TOP).applyTo(encodingLabel);
345
345
346
			Composite encodingContainer = new Composite(container, SWT.NONE);
346
			Composite encodingContainer = new Composite(container, SWT.NONE);
347
			GridLayout gridLayout = new GridLayout(2, false);
347
			GridLayout gridLayout = new GridLayout(2, false);
Lines 430-436 Link Here
430
			httpAuthExpComposite.setClient(httpAuthComp);
430
			httpAuthExpComposite.setClient(httpAuthComp);
431
431
432
			httpAuthButton = new Button(httpAuthComp, SWT.CHECK);
432
			httpAuthButton = new Button(httpAuthComp, SWT.CHECK);
433
			GridDataFactory.fillDefaults().align(SWT.TOP, SWT.CENTER).span(2, SWT.DEFAULT).applyTo(httpAuthButton);
433
			GridDataFactory.fillDefaults().align(SWT.CENTER, SWT.TOP).span(2, SWT.DEFAULT).applyTo(httpAuthButton);
434
434
435
			httpAuthButton.setText("Enabled");
435
			httpAuthButton.setText("Enabled");
436
			httpAuthButton.addSelectionListener(new SelectionListener() {
436
			httpAuthButton.addSelectionListener(new SelectionListener() {
Lines 521-527 Link Here
521
		proxyExpComposite.setClient(proxyAuthComp);
521
		proxyExpComposite.setClient(proxyAuthComp);
522
522
523
		systemProxyButton = new Button(proxyAuthComp, SWT.CHECK);
523
		systemProxyButton = new Button(proxyAuthComp, SWT.CHECK);
524
		GridDataFactory.fillDefaults().align(SWT.TOP, SWT.CENTER).span(2, SWT.DEFAULT).applyTo(systemProxyButton);
524
		GridDataFactory.fillDefaults().align(SWT.CENTER, SWT.TOP).span(2, SWT.DEFAULT).applyTo(systemProxyButton);
525
525
526
		systemProxyButton.setText("Use Install/Update settings (default)");
526
		systemProxyButton.setText("Use Install/Update settings (default)");
527
527
Lines 564-570 Link Here
564
		// ************* PROXY AUTHENTICATION **************
564
		// ************* PROXY AUTHENTICATION **************
565
565
566
		proxyAuthButton = new Button(proxyAuthComp, SWT.CHECK);
566
		proxyAuthButton = new Button(proxyAuthComp, SWT.CHECK);
567
		GridDataFactory.fillDefaults().align(SWT.TOP, SWT.CENTER).span(2, SWT.DEFAULT).applyTo(proxyAuthButton);
567
		GridDataFactory.fillDefaults().align(SWT.CENTER, SWT.TOP).span(2, SWT.DEFAULT).applyTo(proxyAuthButton);
568
568
569
		proxyAuthButton.setText("Enable proxy authentication");
569
		proxyAuthButton.setText("Enable proxy authentication");
570
		proxyAuthButton.addSelectionListener(new SelectionListener() {
570
		proxyAuthButton.addSelectionListener(new SelectionListener() {

Return to bug 176300