diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2009-08-20 16:29:04 +1000 |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2009-08-20 16:29:04 +1000 |
commit | efe920cb2873facc7f9b21f77b678628e9c3dcb2 (patch) | |
tree | a346542f1eafa29d5746477e21f6698e869bb96e /doc/src/snippets/declarative/pathview | |
parent | 3cfba122843d64bb6761808c020b27c231dad8be (diff) | |
download | qt4-tools-efe920cb2873facc7f9b21f77b678628e9c3dcb2.tar.gz |
Update documentation regarding font.pointSize
Diffstat (limited to 'doc/src/snippets/declarative/pathview')
-rw-r--r-- | doc/src/snippets/declarative/pathview/pathattributes.qml | 2 | ||||
-rw-r--r-- | doc/src/snippets/declarative/pathview/pathview.qml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/snippets/declarative/pathview/pathattributes.qml b/doc/src/snippets/declarative/pathview/pathattributes.qml index 3c2b204287..92d6966326 100644 --- a/doc/src/snippets/declarative/pathview/pathattributes.qml +++ b/doc/src/snippets/declarative/pathview/pathattributes.qml @@ -13,7 +13,7 @@ Rectangle { opacity: PathView.opacity VerticalLayout { Image { anchors.horizontalCenter: Name.horizontalCenter; width: 64; height: 64; source: icon } - Text { id: Name; text: name; font.size: 16} + Text { id: Name; text: name; font.pointSize: 16} } } } diff --git a/doc/src/snippets/declarative/pathview/pathview.qml b/doc/src/snippets/declarative/pathview/pathview.qml index f5db242997..004a1d2149 100644 --- a/doc/src/snippets/declarative/pathview/pathview.qml +++ b/doc/src/snippets/declarative/pathview/pathview.qml @@ -11,7 +11,7 @@ Rectangle { width: 80; height: 80 VerticalLayout { Image { anchors.horizontalCenter: Name.horizontalCenter; width: 64; height: 64; source: icon } - Text { id: Name; text: name; font.size: 16} + Text { id: Name; text: name; font.pointSize: 16} } } } |