aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativesmoothedanimation/data/smoothedanimationValueSource.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativesmoothedanimation/data/smoothedanimationValueSource.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativesmoothedanimation/data/smoothedanimationValueSource.qml13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/auto/qtquick1/qdeclarativesmoothedanimation/data/smoothedanimationValueSource.qml b/tests/auto/qtquick1/qdeclarativesmoothedanimation/data/smoothedanimationValueSource.qml
deleted file mode 100644
index 5036d5f225..0000000000
--- a/tests/auto/qtquick1/qdeclarativesmoothedanimation/data/smoothedanimationValueSource.qml
+++ /dev/null
@@ -1,13 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- width: 300; height: 300;
- Rectangle {
- objectName: "theRect"
- color: "red"
- width: 60; height: 60;
- x: 100; y: 100;
- SmoothedAnimation on x { objectName: "easeX"; to: 200; velocity: 500 }
- SmoothedAnimation on y { objectName: "easeY"; to: 200; duration: 250; velocity: 500 }
- }
-}