aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/shapes/content/item5.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick/shapes/content/item5.qml')
-rw-r--r--examples/quick/shapes/content/item5.qml12
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/quick/shapes/content/item5.qml b/examples/quick/shapes/content/item5.qml
index c9874e5ebc..5fd25093ae 100644
--- a/examples/quick/shapes/content/item5.qml
+++ b/examples/quick/shapes/content/item5.qml
@@ -60,14 +60,14 @@ Rectangle {
ShapePath {
strokeWidth: 4
strokeColor: "red"
- fillGradient: ShapeLinearGradient {
+ fillGradient: LinearGradient {
x1: 20; y1: 20
x2: 180; y2: 130
- ShapeGradientStop { position: 0; color: "blue" }
- ShapeGradientStop { position: 0.2; color: "green" }
- ShapeGradientStop { position: 0.4; color: "red" }
- ShapeGradientStop { position: 0.6; color: "yellow" }
- ShapeGradientStop { position: 1; color: "cyan" }
+ GradientStop { position: 0; color: "blue" }
+ GradientStop { position: 0.2; color: "green" }
+ GradientStop { position: 0.4; color: "red" }
+ GradientStop { position: 0.6; color: "yellow" }
+ GradientStop { position: 1; color: "cyan" }
}
fillColor: "blue" // ignored with the gradient set
strokeStyle: ShapePath.DashLine