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

Remove the new Qt Project wizard.

We're trying to consolidate all the CDT wizards in the New C/C++
Project wizard.

Change-Id: I9303df4ee8d7adddee3005e7d5d6f7b11b8faa3e
This commit is contained in:
Doug Schaefer 2016-08-17 12:01:13 -04:00
parent cd559dafaf
commit 8fd27dfb2b
2 changed files with 0 additions and 32 deletions

View file

@ -35,18 +35,6 @@
<partition type="__c_preprocessor"/> <partition type="__c_preprocessor"/>
</completionProposalComputer> </completionProposalComputer>
</extension> </extension>
<extension
point="org.eclipse.ui.newWizards">
<wizard
category="org.eclipse.cdt.ui.newCWizards"
class="org.eclipse.cdt.internal.qt.ui.wizards.NewQtProjectWizard"
finalPerspective="org.eclipse.cdt.ui.CPerspective"
icon="icons/qt16.png"
id="org.eclipse.cdt.qt.ui.newProject"
name="%newProject.name"
project="true">
</wizard>
</extension>
<extension <extension
point="org.eclipse.ui.editors"> point="org.eclipse.ui.editors">
<editor <editor

View file

@ -1,20 +0,0 @@
/*******************************************************************************
* Copyright (c) 2015, 2016 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
* http://www.eclipse.org/legal/epl-v10.html
*******************************************************************************/
package org.eclipse.cdt.internal.qt.ui.wizards;
import org.eclipse.tools.templates.ui.NewWizard;
public class NewQtProjectWizard extends NewWizard {
private static final String QT_TAG_ID = "org.eclipse.cdt.qt.ui.tag"; //$NON-NLS-1$
public NewQtProjectWizard() {
super(QT_TAG_ID);
}
}