aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativeflickable/data/wheel.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativeflickable/data/wheel.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativeflickable/data/wheel.qml21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/auto/qtquick1/qdeclarativeflickable/data/wheel.qml b/tests/auto/qtquick1/qdeclarativeflickable/data/wheel.qml
deleted file mode 100644
index 6ea81b2d9e..0000000000
--- a/tests/auto/qtquick1/qdeclarativeflickable/data/wheel.qml
+++ /dev/null
@@ -1,21 +0,0 @@
-import QtQuick 1.1
-
-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"
- }
- }
-}