aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/objectsPassThroughSignals.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/objectsPassThroughSignals.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeecmascript/data/objectsPassThroughSignals.qml18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/objectsPassThroughSignals.qml b/tests/auto/declarative/qdeclarativeecmascript/data/objectsPassThroughSignals.qml
deleted file mode 100644
index 98f9e05bdf..0000000000
--- a/tests/auto/declarative/qdeclarativeecmascript/data/objectsPassThroughSignals.qml
+++ /dev/null
@@ -1,18 +0,0 @@
-import QtQuick 2.0
-
-QtObject {
- id: root
-
- property bool test: false
-
- signal mysignal(variant object);
- function myslot(object)
- {
- test = (object == root);
- }
-
- Component.onCompleted: {
- mysignal.connect(this, myslot);
- mysignal(root);
- }
-}