aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativelistmodel/data/enumerate.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativelistmodel/data/enumerate.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativelistmodel/data/enumerate.qml24
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/auto/qtquick1/qdeclarativelistmodel/data/enumerate.qml b/tests/auto/qtquick1/qdeclarativelistmodel/data/enumerate.qml
deleted file mode 100644
index 93697f3307..0000000000
--- a/tests/auto/qtquick1/qdeclarativelistmodel/data/enumerate.qml
+++ /dev/null
@@ -1,24 +0,0 @@
-import QtQuick 1.0
-
-Item {
- property string result
-
- ListModel {
- id: model
-
- ListElement {
- val1: 1
- val2: 2
- val3: "str"
- val4: false
- val5: true
- }
- }
-
- Component.onCompleted: {
- var element = model.get(0);
-
- for (var i in element)
- result += i+"="+element[i]+(element[i] ? "Y" : "N")+":";
- }
-}