Fix qt version number in Qt Quick Wizard

Temporal lapse in understanding which qt version is required for the Qt
Quick Wizard. On Maemo we have the Qt Quick compat plugin which allows
the generated project to work with 4.7.0. In theory that doesn't apply
to symbian, but qt 4.7.0 does not support symbian. (And on the desktop
everyone has upgraded.)

Reviewed-By: ck
This commit is contained in:
dt
2011-04-13 10:12:52 +02:00
parent 075b0aeb09
commit d0f7be188a

View File

@@ -59,7 +59,7 @@ private:
};
QtQuickAppWizardDialog::QtQuickAppWizardDialog(QWidget *parent)
: AbstractMobileAppWizardDialog(parent, QtVersionNumber(4, 7, 1))
: AbstractMobileAppWizardDialog(parent, QtVersionNumber(4, 7, 0))
, m_qmlSourcesPage(0)
{
setWindowTitle(tr("New Qt Quick Application"));