aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeimage/data/aspectratio.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeimage/data/aspectratio.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeimage/data/aspectratio.qml10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/auto/declarative/qdeclarativeimage/data/aspectratio.qml b/tests/auto/declarative/qdeclarativeimage/data/aspectratio.qml
deleted file mode 100644
index cd092bc760..0000000000
--- a/tests/auto/declarative/qdeclarativeimage/data/aspectratio.qml
+++ /dev/null
@@ -1,10 +0,0 @@
-import QtQuick 1.0
-
-Image {
- property int widthChange: 0
- property int heightChange: 0
- source: "heart.png"
- fillMode: Image.PreserveAspectFit;
- onWidthChanged: widthChange += 1
- onHeightChanged: heightChange += 1
-}