diff options
author | hjk <hjk121@nokiamail.com> | 2013-10-16 11:02:37 +0200 |
---|---|---|
committer | Eike Ziller <eike.ziller@digia.com> | 2013-10-16 12:09:59 +0200 |
commit | ebcd992577bfca1e94f207958d736490395cd82b (patch) | |
tree | 2bba49115790e80fef7e57006d3acc47cfcecf95 /src/plugins/qmlprojectmanager/qmlapplicationwizard.cpp | |
parent | 56d564c5b318ff57ee02dbf3de6ca1a22b0231ca (diff) | |
download | qt-creator-ebcd992577bfca1e94f207958d736490395cd82b.tar.gz |
Rename namespace Qt4ProjectManager to QmakeProjectManager
First step towards plugin renaming.
Change-Id: I8ac017660a7aa2bda0d7bb7d72ab0cfceaf6cfd2
Reviewed-by: Eike Ziller <eike.ziller@digia.com>
Diffstat (limited to 'src/plugins/qmlprojectmanager/qmlapplicationwizard.cpp')
-rw-r--r-- | src/plugins/qmlprojectmanager/qmlapplicationwizard.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/qmlprojectmanager/qmlapplicationwizard.cpp b/src/plugins/qmlprojectmanager/qmlapplicationwizard.cpp index 74661acaa5..2640728043 100644 --- a/src/plugins/qmlprojectmanager/qmlapplicationwizard.cpp +++ b/src/plugins/qmlprojectmanager/qmlapplicationwizard.cpp @@ -47,7 +47,7 @@ using namespace Core; using namespace ExtensionSystem; using namespace ProjectExplorer; -using namespace Qt4ProjectManager; +using namespace QmakeProjectManager; namespace QmlProjectManager { namespace Internal { @@ -71,7 +71,7 @@ QmlApplicationWizard::QmlApplicationWizard(const TemplateInfo &templateInfo) setWizardKind(ProjectWizard); setCategory(QLatin1String(ProjectExplorer::Constants::QT_APPLICATION_WIZARD_CATEGORY)); setId(QLatin1String("QA.QMLB Application")); - setIcon(QIcon(QLatin1String(Qt4ProjectManager::Constants::ICON_QTQUICK_APP))); + setIcon(QIcon(QLatin1String(QmakeProjectManager::Constants::ICON_QTQUICK_APP))); setDisplayCategory( QLatin1String(ProjectExplorer::Constants::QT_APPLICATION_WIZARD_CATEGORY_DISPLAY)); setDisplayName(tr("Qt Quick Application")); @@ -105,7 +105,7 @@ void QmlApplicationWizard::createInstances(ExtensionSystem::IPlugin *plugin) } wizard->setRequiredFeatures(features); - wizard->setIcon(QIcon(QLatin1String(Qt4ProjectManager::Constants::ICON_QTQUICK_APP))); + wizard->setIcon(QIcon(QLatin1String(QmakeProjectManager::Constants::ICON_QTQUICK_APP))); plugin->addAutoReleasedObject(wizard); } } |