aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativebinding/data/deletedObject.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativebinding/data/deletedObject.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativebinding/data/deletedObject.qml24
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/auto/qtquick1/qdeclarativebinding/data/deletedObject.qml b/tests/auto/qtquick1/qdeclarativebinding/data/deletedObject.qml
deleted file mode 100644
index ba4c9f6f7c..0000000000
--- a/tests/auto/qtquick1/qdeclarativebinding/data/deletedObject.qml
+++ /dev/null
@@ -1,24 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- id: wrapper
- width: 400
- height: 400
-
- property bool activateBinding: false
-
- Binding {
- id: binding
- target: Qt.createQmlObject('import QtQuick 1.0; Item { property real value: 10 }', wrapper)
- property: "value"
- when: activateBinding
- value: x + y
- }
-
- Component.onCompleted: binding.target.destroy();
-
-// MouseArea {
-// anchors.fill: parent
-// onClicked: activateBinding = true;
-// }
-}