1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 02:06:01 +02:00

Fix for 178673 by Jason Montoyo, CDT does not compile against platform 3.3 M6

This commit is contained in:
Markus Schorn 2007-03-26 08:48:58 +00:00
parent 35357e4366
commit dcfbb03147

View file

@ -18,12 +18,11 @@ import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.Platform; import org.eclipse.core.runtime.Platform;
import org.eclipse.core.runtime.content.IContentTypeManager; import org.eclipse.core.runtime.content.IContentTypeManager;
import org.eclipse.jface.layout.TableColumnAdapter; import org.eclipse.jface.layout.TableColumnLayout;
import org.eclipse.jface.preference.PreferencePage; import org.eclipse.jface.preference.PreferencePage;
import org.eclipse.jface.viewers.ColumnWeightData; import org.eclipse.jface.viewers.ColumnWeightData;
import org.eclipse.jface.window.Window; import org.eclipse.jface.window.Window;
import org.eclipse.swt.SWT; import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Button;
@ -87,9 +86,8 @@ public class ProjectLanguageMappingPropertyPage extends PropertyPage {
Composite tableParent = new Composite(composite, SWT.NONE); Composite tableParent = new Composite(composite, SWT.NONE);
tableParent.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true)); tableParent.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
tableParent.setLayout(new FillLayout());
fTable = new Table(tableParent, SWT.MULTI | SWT.BORDER | SWT.V_SCROLL | SWT.FULL_SELECTION);
fTable = new Table(tableParent, SWT.MULTI | SWT.BORDER | SWT.V_SCROLL);
fTable.setHeaderVisible(true); fTable.setHeaderVisible(true);
fTable.setLinesVisible(true); fTable.setLinesVisible(true);
@ -101,12 +99,12 @@ public class ProjectLanguageMappingPropertyPage extends PropertyPage {
languageColumn languageColumn
.setText(PreferencesMessages.ProjectLanguagesPropertyPage_languageColumn); .setText(PreferencesMessages.ProjectLanguagesPropertyPage_languageColumn);
TableColumnAdapter columnAdapter = new TableColumnAdapter(fTable); TableColumnLayout layout = new TableColumnLayout();
columnAdapter.addColumnData(new ColumnWeightData(1, layout.setColumnData(contentTypeColumn, new ColumnWeightData(1,
MINIMUM_COLUMN_WIDTH, true)); MINIMUM_COLUMN_WIDTH, true));
columnAdapter.addColumnData(new ColumnWeightData(1, layout.setColumnData(languageColumn, new ColumnWeightData(1,
MINIMUM_COLUMN_WIDTH, true)); MINIMUM_COLUMN_WIDTH, true));
tableParent.addControlListener(columnAdapter); tableParent.setLayout(layout);
Composite buttons = new Composite(composite, SWT.NONE); Composite buttons = new Composite(composite, SWT.NONE);
buttons.setLayout(new GridLayout()); buttons.setLayout(new GridLayout());