aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativemousearea/data/pressedOrdering.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativemousearea/data/pressedOrdering.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativemousearea/data/pressedOrdering.qml28
1 files changed, 0 insertions, 28 deletions
diff --git a/tests/auto/qtquick1/qdeclarativemousearea/data/pressedOrdering.qml b/tests/auto/qtquick1/qdeclarativemousearea/data/pressedOrdering.qml
deleted file mode 100644
index 4a80e83465..0000000000
--- a/tests/auto/qtquick1/qdeclarativemousearea/data/pressedOrdering.qml
+++ /dev/null
@@ -1,28 +0,0 @@
-import QtQuick 1.0
-
-Item {
- id: root
- property string value: "base"
-
- MouseArea {
- id: mouseArea
- width: 200; height: 200
- onClicked: toggleState.state = "toggled"
- }
-
- StateGroup {
- states: State {
- name: "pressed"
- when: mouseArea.pressed
- PropertyChanges { target: root; value: "pressed" }
- }
- }
-
- StateGroup {
- id: toggleState
- states: State {
- name: "toggled"
- PropertyChanges { target: root; value: "toggled" }
- }
- }
-}