aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativestates/data/Implementation/MyType.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativestates/data/Implementation/MyType.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativestates/data/Implementation/MyType.qml32
1 files changed, 0 insertions, 32 deletions
diff --git a/tests/auto/qtquick1/qdeclarativestates/data/Implementation/MyType.qml b/tests/auto/qtquick1/qdeclarativestates/data/Implementation/MyType.qml
deleted file mode 100644
index 6ad3b4a6ba..0000000000
--- a/tests/auto/qtquick1/qdeclarativestates/data/Implementation/MyType.qml
+++ /dev/null
@@ -1,32 +0,0 @@
-import QtQuick 1.0
-
-Item {
- Column {
- anchors.centerIn: parent
- Image { id: image1; objectName: "image1" }
- Image { id: image2; objectName: "image2" }
- Image { id: image3; objectName: "image3" }
- }
-
- states: State {
- name: "SetImageState"
- PropertyChanges {
- target: image1
- source: "images/qt-logo.png"
- }
- PropertyChanges {
- target: image2
- source: "images/" + "qt-logo.png"
- }
- PropertyChanges {
- target: image3
- source: "images/" + (true ? "qt-logo.png" : "")
- }
- }
-
- MouseArea {
- anchors.fill: parent
- onClicked: parent.state = "SetImageState"
- }
-
-}