diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-11-19 03:34:28 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-11-19 03:34:28 (GMT) |
commit | a9a2b17b8a967c001137e12af570856d9ce4b937 (patch) | |
tree | acef06e5d0bc9c994289531925c5a442767230da /tests/auto/declarative/qmlengine | |
parent | 0b991014c55d02211eee01cad44b4ca4a2edb07d (diff) | |
download | Qt-a9a2b17b8a967c001137e12af570856d9ce4b937.zip Qt-a9a2b17b8a967c001137e12af570856d9ce4b937.tar.gz Qt-a9a2b17b8a967c001137e12af570856d9ce4b937.tar.bz2 |
Rename QML Object to QtObject
Diffstat (limited to 'tests/auto/declarative/qmlengine')
-rw-r--r-- | tests/auto/declarative/qmlengine/tst_qmlengine.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/declarative/qmlengine/tst_qmlengine.cpp b/tests/auto/declarative/qmlengine/tst_qmlengine.cpp index 5471691..8794af9 100644 --- a/tests/auto/declarative/qmlengine/tst_qmlengine.cpp +++ b/tests/auto/declarative/qmlengine/tst_qmlengine.cpp @@ -189,7 +189,7 @@ void tst_qmlengine::clearComponentCache() { QFile file("temp.qml"); QVERIFY(file.open(QIODevice::WriteOnly)); - file.write("import Qt 4.6\nObject {\nproperty int test: 10\n}\n"); + file.write("import Qt 4.6\nQtObject {\nproperty int test: 10\n}\n"); file.close(); } @@ -206,7 +206,7 @@ void tst_qmlengine::clearComponentCache() { QFile file("temp.qml"); QVERIFY(file.open(QIODevice::WriteOnly)); - file.write("import Qt 4.6\nObject {\nproperty int test: 11\n}\n"); + file.write("import Qt 4.6\nQtObject {\nproperty int test: 11\n}\n"); file.close(); } |