Using import Qt 4.7 (again)

We have to support the  N900

Reviewed-by: dt
This commit is contained in:
Thomas Hartmann
2010-10-06 13:35:28 +02:00
parent 7ef2d81aad
commit fefc6cfe6d
3 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
import QtQuick 1.0
import Qt 4.7
Rectangle {
width: 200

View File

@@ -62,7 +62,7 @@ QString QmlFileWizard::fileContents(const QString &fileName) const
QTextStream str(&contents);
// str << CppTools::AbstractEditorSupport::licenseTemplate();
str << QLatin1String("import QtQuick 1.0\n")
str << QLatin1String("import Qt 4.7\n")
<< QLatin1String("\n")
<< QLatin1String("Rectangle {\n")
<< QLatin1String(" width: 640\n")

View File

@@ -114,7 +114,7 @@ Core::GeneratedFiles QmlProjectApplicationWizard::generateFiles(const QWizard *w
QTextStream out(&contents);
out
<< "import QtQuick 1.0" << endl
<< "import Qt 4.7" << endl
<< endl
<< "Rectangle {" << endl
<< " width: 200" << endl