1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 08:55:25 +02:00

Bug 394492 - Project options can be invisible in Convert wizard

Change-Id: Iff54d3baf605ab79fedcd842a22955d7a3018ac7
Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
Reviewed-on: https://git.eclipse.org/r/13462
This commit is contained in:
Marc-Andre Laperle 2013-06-01 17:02:24 -04:00
parent 9e1e3ce04f
commit 63bc5765e3

View file

@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2000, 2010 QNX Software Systems and others.
* Copyright (c) 2000, 2013 QNX Software Systems and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@ -8,6 +8,7 @@
* Contributors:
* QNX Software Systems - Initial API and implementation
* Intel corporation - customization for New Project model.
* Marc-Andre Laperle (Ericsson) - Bug 394492 Project options not visible
*******************************************************************************/
package org.eclipse.cdt.managedbuilder.ui.wizards;
@ -90,7 +91,9 @@ public class ConvertToMakeWizardPage extends ConvertProjectWizardPage {
super.addToMainPage(container);
Group optionsGroup = new Group(container, SWT.NONE);
optionsGroup.setLayoutData(new GridData(GridData.FILL_BOTH));
GridData layoutData = new GridData(GridData.FILL_HORIZONTAL);
layoutData.heightHint = 200;
optionsGroup.setLayoutData(layoutData);
optionsGroup.setLayout(new GridLayout(1, true));
optionsGroup.setText(MakeUIPlugin.getResourceString("WizardMakeProjectConversion.projectOptions.title")); //$NON-NLS-1$
Composite c = new Composite(optionsGroup, SWT.NONE);