aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets/qml/rotation.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/quick/doc/snippets/qml/rotation.qml')
-rw-r--r--src/quick/doc/snippets/qml/rotation.qml10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/quick/doc/snippets/qml/rotation.qml b/src/quick/doc/snippets/qml/rotation.qml
index 55a6d54cbb..8160bbe4b5 100644
--- a/src/quick/doc/snippets/qml/rotation.qml
+++ b/src/quick/doc/snippets/qml/rotation.qml
@@ -7,21 +7,21 @@ Row {
x: 10; y: 10
spacing: 10
- Image { source: "pics/qt.png" }
+ Image { source: "images/qt-logo.png" }
Image {
- source: "pics/qt.png"
+ source: "images/qt-logo.png"
transform: Rotation { origin.x: 30; origin.y: 30; axis { x: 0; y: 1; z: 0 } angle: 18 }
}
Image {
- source: "pics/qt.png"
+ source: "images/qt-logo.png"
transform: Rotation { origin.x: 30; origin.y: 30; axis { x: 0; y: 1; z: 0 } angle: 36 }
}
Image {
- source: "pics/qt.png"
+ source: "images/qt-logo.png"
transform: Rotation { origin.x: 30; origin.y: 30; axis { x: 0; y: 1; z: 0 } angle: 54 }
}
Image {
- source: "pics/qt.png"
+ source: "images/qt-logo.png"
transform: Rotation { origin.x: 30; origin.y: 30; axis { x: 0; y: 1; z: 0 } angle: 72 }
}
}