View | Details | Raw Unified | Return to bug 268355
Collapse All | Expand All

(-)src/org/eclipse/ui/internal/net/ProxyEntriesComposite.java (-2 / +2 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2008 IBM Corporation and others.
2
 * Copyright (c) 2008, 2009 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 80-86 Link Here
80
		entriesViewer.setLabelProvider(labelProvider);
80
		entriesViewer.setLabelProvider(labelProvider);
81
81
82
		TableLayout tableLayout = new TableLayout();
82
		TableLayout tableLayout = new TableLayout();
83
		tableLayout.addColumnData(new ColumnPixelData(18));
83
		tableLayout.addColumnData(new ColumnPixelData(24));
84
		tableLayout.addColumnData(new ColumnWeightData(20, 50, true));
84
		tableLayout.addColumnData(new ColumnWeightData(20, 50, true));
85
		tableLayout.addColumnData(new ColumnWeightData(50, 50, true));
85
		tableLayout.addColumnData(new ColumnWeightData(50, 50, true));
86
		tableLayout.addColumnData(new ColumnWeightData(20, 50, true));
86
		tableLayout.addColumnData(new ColumnWeightData(20, 50, true));
(-)src/org/eclipse/ui/internal/net/NonProxyHostsComposite.java (-2 / +2 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2005, 2008 IBM Corporation and others.
2
 * Copyright (c) 2005, 2009 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 88-94 Link Here
88
		hostsViewer.setLabelProvider(labelProvider);
88
		hostsViewer.setLabelProvider(labelProvider);
89
89
90
		TableLayout tableLayout = new TableLayout();
90
		TableLayout tableLayout = new TableLayout();
91
		tableLayout.addColumnData(new ColumnPixelData(18));
91
		tableLayout.addColumnData(new ColumnPixelData(24));
92
		tableLayout.addColumnData(new ColumnWeightData(50, 50, true));
92
		tableLayout.addColumnData(new ColumnWeightData(50, 50, true));
93
		tableLayout.addColumnData(new ColumnWeightData(50, 50, true));
93
		tableLayout.addColumnData(new ColumnWeightData(50, 50, true));
94
		hostsTable.setLayout(tableLayout);
94
		hostsTable.setLayout(tableLayout);

Return to bug 268355