From ce141da45fa977549456e44bab76d8eddf40dac2 Mon Sep 17 00:00:00 2001 From: hjk Date: Mon, 20 Sep 2010 14:01:52 +0200 Subject: [PATCH] qml new application wizard: remove the 'new'. Reviewed-by: Kai Koehne --- .../qt4projectmanager/wizards/qmlstandaloneappwizard.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/qt4projectmanager/wizards/qmlstandaloneappwizard.cpp b/src/plugins/qt4projectmanager/wizards/qmlstandaloneappwizard.cpp index 7093180b386..135fc89a058 100644 --- a/src/plugins/qt4projectmanager/wizards/qmlstandaloneappwizard.cpp +++ b/src/plugins/qt4projectmanager/wizards/qmlstandaloneappwizard.cpp @@ -104,10 +104,10 @@ Core::BaseFileWizardParameters QmlStandaloneAppWizard::parameters(WizardType typ Core::BaseFileWizardParameters parameters(ProjectWizard); parameters.setIcon(QIcon(QLatin1String(Constants::ICON_QML_STANDALONE))); parameters.setDisplayName(type == QmlStandaloneAppWizard::NewQmlFile - ? tr("Qt QML New Application") - : tr("Qt QML New Imported Application")); + ? tr("Qt QML Application") + : tr("Qt QML Imported Application")); parameters.setId(QLatin1String(type == QmlStandaloneAppWizard::NewQmlFile - ? "QA.QMLA New Application" + ? "QA.QMLA Application" : "QA.QMLB Imported Application")); parameters.setDescription(type == QmlStandaloneAppWizard::NewQmlFile ? tr("Creates a mobile-deployable Qt QML application "