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 94743 Details for
Bug 225053
[WorkingSets] WorkingSetsDialog seems to be damaged
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]
corrected layout patch
20080304_225053_WorkingSetsDialog.txt (text/plain), 1.97 KB, created by
Blazej Kroll
on 2008-04-03 11:57:07 EDT
(
hide
)
Description:
corrected layout patch
Filename:
MIME Type:
Creator:
Blazej Kroll
Created:
2008-04-03 11:57:07 EDT
Size:
1.97 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.team.ui >Index: src/org/eclipse/team/internal/ui/wizards/WorkingSetsDialog.java >=================================================================== >RCS file: /cvsroot/eclipse/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/wizards/WorkingSetsDialog.java,v >retrieving revision 1.4 >diff -u -r1.4 WorkingSetsDialog.java >--- src/org/eclipse/team/internal/ui/wizards/WorkingSetsDialog.java 16 Mar 2007 21:03:35 -0000 1.4 >+++ src/org/eclipse/team/internal/ui/wizards/WorkingSetsDialog.java 3 Apr 2008 15:52:58 -0000 >@@ -46,10 +46,11 @@ > protected Control createDialogArea(Composite parent) { > setTitle(TeamUIMessages.WorkingSetsDialog_Title); > setMessage(TeamUIMessages.WorkingSetsDialog_Message); >- Composite composite = (Composite) super.createDialogArea(parent); >+ Composite workingSetsComposite = (Composite) super.createDialogArea(parent); >+ workingSetsComposite = new Composite(workingSetsComposite, SWT.NONE); > getShell().setText(TeamUIMessages.WorkingSetsDialog_TitleBar); > >- final Composite group = new Composite(composite, SWT.NONE); >+ final Composite group = new Composite(workingSetsComposite, SWT.NONE); > GridLayout layout = new GridLayout(2, false); > layout.marginWidth = 0; > group.setLayout(layout); >@@ -66,11 +67,11 @@ > layout.numColumns = 1; > layout.marginHeight = convertVerticalDLUsToPixels(IDialogConstants.VERTICAL_MARGIN); > layout.marginWidth = convertHorizontalDLUsToPixels(IDialogConstants.HORIZONTAL_MARGIN); >- composite.setLayout(layout); >+ workingSetsComposite.setLayout(layout); > final GridData data = new GridData(SWT.FILL, SWT.FILL, true, true); >- composite.setLayoutData(data); >+ workingSetsComposite.setLayoutData(data); > >- wsTableViewer = new TableViewer(composite, SWT.BORDER); >+ wsTableViewer = new TableViewer(workingSetsComposite, SWT.BORDER); > final GridData gd = new GridData(SWT.FILL, SWT.FILL, true, true); > gd.widthHint = 450; > gd.heightHint = 250;
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 225053
:
94334
|
94742
| 94743