aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorBerthold Krevert <berthold.krevert@basyskom.com>2017-07-27 20:09:01 +0200
committerLaszlo Agocs <laszlo.agocs@qt.io>2017-07-28 09:20:06 +0000
commitce5436a9a07b5593529afc0a259e55d5c716e41c (patch)
treebd1fe226548754ff9c331a43ac787032e3fe6e78 /examples
parenta2db480db51748b381f18987790b5f2de8c0c911 (diff)
Rename property to rendererType
This follows the documentation. Change-Id: I74d8d2b45546717c6a6b252af9370c6670ef1b78 Reviewed-by: Laszlo Agocs <laszlo.agocs@qt.io>
Diffstat (limited to 'examples')
-rw-r--r--examples/quick/shapes/content/pathitemgallery.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/quick/shapes/content/pathitemgallery.qml b/examples/quick/shapes/content/pathitemgallery.qml
index 3b418639ee..e871de4c52 100644
--- a/examples/quick/shapes/content/pathitemgallery.qml
+++ b/examples/quick/shapes/content/pathitemgallery.qml
@@ -180,7 +180,7 @@ Rectangle {
color: "darkBlue"
font.pointSize: 12
property variant rendererStrings: [ "Unknown", "Generic (QtGui triangulator)", "GL_NV_path_rendering", "Software (QPainter)" ]
- text: "Active Shape backend: " + rendererStrings[dummyShape.renderer]
+ text: "Active Shape backend: " + rendererStrings[dummyShape.rendererType]
SequentialAnimation on opacity {
NumberAnimation { from: 1; to: 0; duration: 5000 }
PauseAnimation { duration: 5000 }