aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelistview/data/attachedSignals.qml
diff options
context:
space:
mode:
authorMartin Jones <martin.jones@nokia.com>2011-07-11 13:47:51 +1000
committerQt by Nokia <qt-info@nokia.com>2011-07-12 06:38:09 +0200
commit4442dea01b9d4d45964228ac442166d89f091f9e (patch)
tree28ae20cb26967765a988b1ee522fc2d64d777671 /tests/auto/declarative/qdeclarativelistview/data/attachedSignals.qml
parentb119220da60453ecf31898f7a57eda9d3c4e9225 (diff)
Extract all QtQuick 1 elements into a separate library/plugin.
Change-Id: I41a280de2739ee08202f4be2519e5012870090f2 Reviewed-on: http://codereview.qt.nokia.com/1391 Reviewed-by: Martin Jones <martin.jones@nokia.com>
Diffstat (limited to 'tests/auto/declarative/qdeclarativelistview/data/attachedSignals.qml')
-rw-r--r--tests/auto/declarative/qdeclarativelistview/data/attachedSignals.qml24
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/auto/declarative/qdeclarativelistview/data/attachedSignals.qml b/tests/auto/declarative/qdeclarativelistview/data/attachedSignals.qml
deleted file mode 100644
index 5ca1a45839..0000000000
--- a/tests/auto/declarative/qdeclarativelistview/data/attachedSignals.qml
+++ /dev/null
@@ -1,24 +0,0 @@
-import QtQuick 1.0
-
-ListView {
- id: view
- width: 240; height: 320
-
- property variant addedDelegates: []
- property int removedDelegateCount
-
- model: testModel
-
- delegate: Rectangle {
- width: 200; height: delegateHeight
- border.width: 1
- ListView.onAdd: {
- var obj = ListView.view.addedDelegates
- obj.push(model.name)
- ListView.view.addedDelegates = obj
- }
- ListView.onRemove: {
- view.removedDelegateCount += 1
- }
- }
-}