aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelistmodel/data/signalhandlers.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativelistmodel/data/signalhandlers.qml')
-rw-r--r--tests/auto/declarative/qdeclarativelistmodel/data/signalhandlers.qml8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/auto/declarative/qdeclarativelistmodel/data/signalhandlers.qml b/tests/auto/declarative/qdeclarativelistmodel/data/signalhandlers.qml
deleted file mode 100644
index 750d99c5a3..0000000000
--- a/tests/auto/declarative/qdeclarativelistmodel/data/signalhandlers.qml
+++ /dev/null
@@ -1,8 +0,0 @@
-import QtQuick 2.0
-
-ListModel{
- property bool ok: false
- property int foo: 5
- onFooChanged: ok = true
- Component.onCompleted: foo = 6
-}