1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-20 15:35:24 +02:00

Bugfix from Alex

This commit is contained in:
Sebastien Marineau 2002-06-27 14:31:05 +00:00
parent a203d723b1
commit 7c1883b501

View file

@ -389,7 +389,7 @@ public class ControlFactory {
public static CheckboxTableViewer createListViewer(Composite parent, String[] opt_list,
int width, int height, int style) {
Table table = new Table(parent, SWT.BORDER);
Table table = new Table(parent, SWT.BORDER | SWT.CHECK);
CheckboxTableViewer listViewer = new CheckboxTableViewer(table);
GridData data = new GridData(style);
data.widthHint = width;