summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorQt Continuous Integration System <qt-info@nokia.com>2010-07-19 06:33:43 (GMT)
committerQt Continuous Integration System <qt-info@nokia.com>2010-07-19 06:33:43 (GMT)
commit29a628290fe17d96341514046b856635bc23c720 (patch)
tree3f4cabe2314c104c8ec80f170a536706b6587f32 /examples
parentdc37f4ff3439e44df65d24aea4354c80d2a02293 (diff)
parentcc08942aa57877fd4b8e309088ffe9b28a7deeb8 (diff)
downloadQt-29a628290fe17d96341514046b856635bc23c720.zip
Qt-29a628290fe17d96341514046b856635bc23c720.tar.gz
Qt-29a628290fe17d96341514046b856635bc23c720.tar.bz2
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integration
* '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: Fix ListView sections with QList<QObject*> Doc error fixes. Remove the -use-blur option from qtdemo Add label to explain how to exit QML demos PathView doc clarification. Fix Samegame
Diffstat (limited to 'examples')
-rw-r--r--examples/declarative/modelviews/pathview/pathview-example.qml9
1 files changed, 4 insertions, 5 deletions
diff --git a/examples/declarative/modelviews/pathview/pathview-example.qml b/examples/declarative/modelviews/pathview/pathview-example.qml
index 59a0acb..0a3b34c 100644
--- a/examples/declarative/modelviews/pathview/pathview-example.qml
+++ b/examples/declarative/modelviews/pathview/pathview-example.qml
@@ -57,10 +57,9 @@ Rectangle {
Component {
id: appDelegate
-
Item {
width: 100; height: 100
- scale: PathView.scale
+ scale: PathView.iconScale
Image {
id: myIcon
@@ -98,11 +97,11 @@ Rectangle {
path: Path {
startX: 10
startY: 50
- PathAttribute { name: "scale"; value: 0.5 }
+ PathAttribute { name: "iconScale"; value: 0.5 }
PathQuad { x: 200; y: 150; controlX: 50; controlY: 200 }
- PathAttribute { name: "scale"; value: 1.0 }
+ PathAttribute { name: "iconScale"; value: 1.0 }
PathQuad { x: 390; y: 50; controlX: 350; controlY: 200 }
- PathAttribute { name: "scale"; value: 0.5 }
+ PathAttribute { name: "iconScale"; value: 0.5 }
}
}
}