diff options
author | Martin Jones <martin.jones@nokia.com> | 2011-05-05 04:18:28 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2011-05-05 04:18:28 (GMT) |
commit | 4fbcb6a531bf424a8dbbbd0ca2947d9e15118885 (patch) | |
tree | 73e33648cb54f5be25caa46af765080c18f95c36 /tests/auto/declarative/qdeclarativelistview/data | |
parent | 95aa4e4f9b82c3652ffc93310b190db869d491df (diff) | |
download | Qt-4fbcb6a531bf424a8dbbbd0ca2947d9e15118885.zip Qt-4fbcb6a531bf424a8dbbbd0ca2947d9e15118885.tar.gz Qt-4fbcb6a531bf424a8dbbbd0ca2947d9e15118885.tar.bz2 |
Views do not notify count changes properly
The views don't have a valid count until both a model and a delegate
are provided. But, countChanged() is not called when a delegate is
set after the model, so bindings to count were not evaluated. Also
test that count is updated for insertion/removal
Change-Id: Ic82039a624c02f0bdb2862ac7a6e215df75bb314
Task-number: QTBUG-19037
Reviewed-by: Bea Lam
Diffstat (limited to 'tests/auto/declarative/qdeclarativelistview/data')
-rw-r--r-- | tests/auto/declarative/qdeclarativelistview/data/listviewtest.qml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativelistview/data/listviewtest.qml b/tests/auto/declarative/qdeclarativelistview/data/listviewtest.qml index 3cd6f42..75ddabb 100644 --- a/tests/auto/declarative/qdeclarativelistview/data/listviewtest.qml +++ b/tests/auto/declarative/qdeclarativelistview/data/listviewtest.qml @@ -6,6 +6,7 @@ Rectangle { height: 320 color: "#ffffff" + property int count: list.count property bool showHeader: false property bool showFooter: false property real hr: list.visibleArea.heightRatio |