Splitting QmlProjectApplicationWizard for Qt Quick 1.1 and Qt Quick 2

QmlProjectApplicationWizard now has a version for Qt Quick 1.1
and one for Qt Quick 2.

Change-Id: Icdcf2b58ad9f252e47a838717a6234eb840a03b7
Reviewed-by: Kai Koehne <kai.koehne@digia.com>
This commit is contained in:
Thomas Hartmann
2012-11-28 12:44:49 +01:00
committed by Kai Koehne
parent affd4b9ce1
commit e73a349a96
3 changed files with 59 additions and 15 deletions

View File

@@ -80,7 +80,11 @@ bool QmlProjectPlugin::initialize(const QStringList &, QString *errorMessage)
addAutoReleasedObject(manager);
addAutoReleasedObject(new Internal::QmlProjectRunConfigurationFactory);
addAutoReleasedObject(new Internal::QmlProjectRunControlFactory);
addAutoReleasedObject(new Internal::QmlProjectApplicationWizard);
addAutoReleasedObject(new Internal::QmlProjectApplicationWizard(
Internal::QmlProjectApplicationWizard::QtQuick1Project));
addAutoReleasedObject(new Internal::QmlProjectApplicationWizard(
Internal::QmlProjectApplicationWizard::QtQuick2Project));
QmlProjectFileFormat::registerDeclarativeTypes();