aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquickflickable/data/wheel.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qquickflickable/data/wheel.qml')
-rw-r--r--tests/auto/declarative/qquickflickable/data/wheel.qml25
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/auto/declarative/qquickflickable/data/wheel.qml b/tests/auto/declarative/qquickflickable/data/wheel.qml
deleted file mode 100644
index 2928bbcd72..0000000000
--- a/tests/auto/declarative/qquickflickable/data/wheel.qml
+++ /dev/null
@@ -1,25 +0,0 @@
-import QtQuick 2.0
-
-Rectangle {
- width: 400
- height: 400
- color: "gray"
-
- Flickable {
- id: flick
- objectName: "flick"
- anchors.fill: parent
- contentWidth: 800
- contentHeight: 800
-
- Rectangle {
- width: flick.contentWidth
- height: flick.contentHeight
- color: "red"
- Rectangle {
- width: 50; height: 50; color: "blue"
- anchors.centerIn: parent
- }
- }
- }
-}