Bug 2778

Summary: ViewsPreferencePage slams parents data (1GJ6K5U)
Product: [Eclipse Project] Platform Reporter: Tod Creasey <Tod_Creasey>
Component: UIAssignee: Randy Giffen <Randy_Giffen>
Status: RESOLVED FIXED QA Contact:
Severity: enhancement    
Priority: P1    
Version: 2.0   
Target Milestone: ---   
Hardware: All   
OS: Windows 2000   
Whiteboard:

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