diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-02-17 03:39:45 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-02-17 03:39:45 (GMT) |
commit | 9f12ede32d9eaadde7b1f72cf2191f39d5780d57 (patch) | |
tree | 96bbdc9d95c9cd9e087ab2f7c0d19e18e28a1e4a /tests/auto/declarative/qmlecmascript/tst_qmlecmascript.cpp | |
parent | b4754aa9a3761c1bcd8519280d98e34371f4ff10 (diff) | |
download | Qt-9f12ede32d9eaadde7b1f72cf2191f39d5780d57.zip Qt-9f12ede32d9eaadde7b1f72cf2191f39d5780d57.tar.gz Qt-9f12ede32d9eaadde7b1f72cf2191f39d5780d57.tar.bz2 |
Revert "Replace QList<>* support with QmlListProperty"
This was accidentally pushed early.
This reverts commit 8454c53b304a4aba7c058b315041b3a38ad4fff5.
Diffstat (limited to 'tests/auto/declarative/qmlecmascript/tst_qmlecmascript.cpp')
-rw-r--r-- | tests/auto/declarative/qmlecmascript/tst_qmlecmascript.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/declarative/qmlecmascript/tst_qmlecmascript.cpp b/tests/auto/declarative/qmlecmascript/tst_qmlecmascript.cpp index f8a4f5a..4edca69 100644 --- a/tests/auto/declarative/qmlecmascript/tst_qmlecmascript.cpp +++ b/tests/auto/declarative/qmlecmascript/tst_qmlecmascript.cpp @@ -1612,7 +1612,7 @@ void tst_qmlecmascript::listToVariant() QObject *object = component.create(&context); QVERIFY(object != 0); - QVERIFY(qvariant_cast<QmlListProperty<MyQmlObject> >(object->property("test")) == container.children()); + QCOMPARE(object->property("test"), QVariant::fromValue(container.children())); delete object; } |