Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 60808 Details for
Bug 176300
Don't use SWT.DEFAULT in GridDataFactory.align()
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
Patch for Bugzilla/UI
patch176300.txt (text/plain), 2.46 KB, created by
Michael Valenta
on 2007-03-14 11:00:48 EDT
(
hide
)
Description:
Patch for Bugzilla/UI
Filename:
MIME Type:
Creator:
Michael Valenta
Created:
2007-03-14 11:00:48 EDT
Size:
2.46 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.mylar.tasks.ui >Index: src/org/eclipse/mylar/tasks/ui/wizards/AbstractRepositorySettingsPage.java >=================================================================== >RCS file: /cvsroot/technology/org.eclipse.mylar/org.eclipse.mylar.tasks.ui/src/org/eclipse/mylar/tasks/ui/wizards/AbstractRepositorySettingsPage.java,v >retrieving revision 1.7 >diff -u -r1.7 AbstractRepositorySettingsPage.java >--- src/org/eclipse/mylar/tasks/ui/wizards/AbstractRepositorySettingsPage.java 12 Mar 2007 21:41:22 -0000 1.7 >+++ src/org/eclipse/mylar/tasks/ui/wizards/AbstractRepositorySettingsPage.java 14 Mar 2007 14:58:45 -0000 >@@ -341,7 +341,7 @@ > if (needsEncoding()) { > Label encodingLabel = new Label(container, SWT.HORIZONTAL); > encodingLabel.setText("Character Encoding:"); >- GridDataFactory.fillDefaults().align(SWT.TOP, SWT.CENTER).applyTo(encodingLabel); >+ GridDataFactory.fillDefaults().align(SWT.CENTER, SWT.TOP).applyTo(encodingLabel); > > Composite encodingContainer = new Composite(container, SWT.NONE); > GridLayout gridLayout = new GridLayout(2, false); >@@ -430,7 +430,7 @@ > httpAuthExpComposite.setClient(httpAuthComp); > > httpAuthButton = new Button(httpAuthComp, SWT.CHECK); >- GridDataFactory.fillDefaults().align(SWT.TOP, SWT.CENTER).span(2, SWT.DEFAULT).applyTo(httpAuthButton); >+ GridDataFactory.fillDefaults().align(SWT.CENTER, SWT.TOP).span(2, SWT.DEFAULT).applyTo(httpAuthButton); > > httpAuthButton.setText("Enabled"); > httpAuthButton.addSelectionListener(new SelectionListener() { >@@ -521,7 +521,7 @@ > proxyExpComposite.setClient(proxyAuthComp); > > systemProxyButton = new Button(proxyAuthComp, SWT.CHECK); >- GridDataFactory.fillDefaults().align(SWT.TOP, SWT.CENTER).span(2, SWT.DEFAULT).applyTo(systemProxyButton); >+ GridDataFactory.fillDefaults().align(SWT.CENTER, SWT.TOP).span(2, SWT.DEFAULT).applyTo(systemProxyButton); > > systemProxyButton.setText("Use Install/Update settings (default)"); > >@@ -564,7 +564,7 @@ > // ************* PROXY AUTHENTICATION ************** > > proxyAuthButton = new Button(proxyAuthComp, SWT.CHECK); >- GridDataFactory.fillDefaults().align(SWT.TOP, SWT.CENTER).span(2, SWT.DEFAULT).applyTo(proxyAuthButton); >+ GridDataFactory.fillDefaults().align(SWT.CENTER, SWT.TOP).span(2, SWT.DEFAULT).applyTo(proxyAuthButton); > > proxyAuthButton.setText("Enable proxy authentication"); > proxyAuthButton.addSelectionListener(new SelectionListener() {
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 176300
: 60808 |
60862