diff options
author | Alan Alpert <alan.alpert@nokia.com> | 2009-09-09 05:01:35 (GMT) |
---|---|---|
committer | Alan Alpert <alan.alpert@nokia.com> | 2009-09-09 05:01:35 (GMT) |
commit | d2f5a32ff6c06e6a1cad9772f89d4b042eb0c9ef (patch) | |
tree | f6bb54d58d5a97f62f2462a185974a75b1d4e36e /tests/auto/declarative/listview/data | |
parent | a9f368a5e61d1e2a73010353e66810a9b3bf7157 (diff) | |
download | Qt-d2f5a32ff6c06e6a1cad9772f89d4b042eb0c9ef.zip Qt-d2f5a32ff6c06e6a1cad9772f89d4b042eb0c9ef.tar.gz Qt-d2f5a32ff6c06e6a1cad9772f89d4b042eb0c9ef.tar.bz2 |
Fix up some of the tests
Update to work with the latest changes, like 'import Qt 4.6'.
Tests affected:
DateTimeFormatter
Layouts (Positioners)
ListView (Still not passing)
Diffstat (limited to 'tests/auto/declarative/listview/data')
-rw-r--r-- | tests/auto/declarative/listview/data/listview.qml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/declarative/listview/data/listview.qml b/tests/auto/declarative/listview/data/listview.qml index 7a3d76f..1a241eb 100644 --- a/tests/auto/declarative/listview/data/listview.qml +++ b/tests/auto/declarative/listview/data/listview.qml @@ -9,6 +9,7 @@ Rectangle { id: Delegate Item { id: wrapper + objectName: "wrapper" height: 20 width: 240 Text { @@ -17,11 +18,13 @@ Rectangle { Text { x: 30 id: textName + objectName: "textName" text: name } Text { x: 120 id: textNumber + objectName: "textNumber" text: number } Text { @@ -33,6 +36,7 @@ Rectangle { ] ListView { id: list + objectName: "list" width: 240 height: 320 model: testModel |