aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativemousearea/data/clickandhold.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativemousearea/data/clickandhold.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativemousearea/data/clickandhold.qml13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/auto/qtquick1/qdeclarativemousearea/data/clickandhold.qml b/tests/auto/qtquick1/qdeclarativemousearea/data/clickandhold.qml
deleted file mode 100644
index a6409e2e31..0000000000
--- a/tests/auto/qtquick1/qdeclarativemousearea/data/clickandhold.qml
+++ /dev/null
@@ -1,13 +0,0 @@
-import QtQuick 1.0
-
-Item {
- id: root
- property bool clicked: false
- property bool held: false
-
- MouseArea {
- width: 200; height: 200
- onClicked: { root.clicked = true }
- onPressAndHold: { root.held = true }
- }
-}