aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquickmultipointtoucharea/data/signalTest.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qquickmultipointtoucharea/data/signalTest.qml')
-rw-r--r--tests/auto/declarative/qquickmultipointtoucharea/data/signalTest.qml25
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/auto/declarative/qquickmultipointtoucharea/data/signalTest.qml b/tests/auto/declarative/qquickmultipointtoucharea/data/signalTest.qml
deleted file mode 100644
index 3a6aa86a1c..0000000000
--- a/tests/auto/declarative/qquickmultipointtoucharea/data/signalTest.qml
+++ /dev/null
@@ -1,25 +0,0 @@
-import QtQuick 2.0
-
-MultiPointTouchArea {
- width: 240
- height: 320
-
- function clearCounts() {
- touchPointPressCount = 0;
- touchPointUpdateCount = 0;
- touchPointReleaseCount = 0;
- touchCount = 0;
- }
-
- property int touchPointPressCount: 0
- property int touchPointUpdateCount: 0
- property int touchPointReleaseCount: 0
- property int touchCount: 0
-
- maximumTouchPoints: 5
-
- onTouchPointsPressed: { touchPointPressCount = touchPoints.length }
- onTouchPointsUpdated: { touchPointUpdateCount = touchPoints.length }
- onTouchPointsReleased: { touchPointReleaseCount = touchPoints.length }
- onTouchUpdated: { touchCount = touchPoints.length }
-}