Bug 2778 - ViewsPreferencePage slams parents data (1GJ6K5U)
Summary: ViewsPreferencePage slams parents data (1GJ6K5U)
Status: RESOLVED FIXED
Alias: None
Product: Platform
Classification: Eclipse Project
Component: UI (show other bugs)
Version: 2.0   Edit
Hardware: All Windows 2000
: P1 enhancement (vote)
Target Milestone: ---   Edit
Assignee: Randy Giffen CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2001-10-10 22:43 EDT by Tod Creasey CLA
Modified: 2001-11-26 09:48 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Tod Creasey CLA 2001-10-10 22:43:22 EDT
The method createButtonGroup(Composite composite)slams the layout of the parent. This second
from last line should read buttonComposite.

	Composite buttonComposite = new Composite(composite, SWT.LEFT);
	GridLayout layout = new GridLayout();
	layout.numColumns = 2;
	buttonComposite.setLayout(layout);
	GridData data =
		new GridData(GridData.HORIZONTAL_ALIGN_BEGINNING | GridData.GRAB_HORIZONTAL);
	composite.setData(data);

	return buttonComposite;

}


NOTES:
Comment 1 DJ Houghton CLA 2001-10-29 19:16:06 EST
PRODUCT VERSION: build 130

Comment 2 Randy Giffen CLA 2001-11-26 09:48:01 EST
fixed