Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc-Andre Laperle2013-06-01 21:02:24 +0000
committerMarc-Andre Laperle2013-06-02 20:19:26 +0000
commit63bc5765e31c3eb0e8f265cd265bacd050844967 (patch)
tree06081b6168776660bb6218179affe7bd9d6d59b7 /build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder
parent9e1e3ce04f18375ab2c96b6696f699328296288b (diff)
downloadorg.eclipse.cdt-63bc5765e31c3eb0e8f265cd265bacd050844967.tar.gz
org.eclipse.cdt-63bc5765e31c3eb0e8f265cd265bacd050844967.tar.xz
org.eclipse.cdt-63bc5765e31c3eb0e8f265cd265bacd050844967.zip
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
Diffstat (limited to 'build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder')
-rw-r--r--build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/ConvertToMakeWizardPage.java7
1 files changed, 5 insertions, 2 deletions
diff --git a/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/ConvertToMakeWizardPage.java b/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/ConvertToMakeWizardPage.java
index 5d3ff735f03..df45066bfd4 100644
--- a/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/ConvertToMakeWizardPage.java
+++ b/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/ConvertToMakeWizardPage.java
@@ -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);

Back to the top