summaryrefslogtreecommitdiffstats
path: root/examples/declarative/listview
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2009-08-14 02:56:13 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2009-08-14 02:56:13 (GMT)
commitc7aef9c3a3a9c4b2fcebb9f55ae11fc0b590a9ed (patch)
treee2618da2b6ce8c4d3ceeecfe66d7fb133068be01 /examples/declarative/listview
parentda56f50eb640823e2d48c1308c09626a428a50f5 (diff)
downloadQt-c7aef9c3a3a9c4b2fcebb9f55ae11fc0b590a9ed.zip
Qt-c7aef9c3a3a9c4b2fcebb9f55ae11fc0b590a9ed.tar.gz
Qt-c7aef9c3a3a9c4b2fcebb9f55ae11fc0b590a9ed.tar.bz2
Get rid of QmlFont and use the QFont value type instead.
Diffstat (limited to 'examples/declarative/listview')
-rw-r--r--examples/declarative/listview/recipes.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/declarative/listview/recipes.qml b/examples/declarative/listview/recipes.qml
index 7abadd0..b2c17af 100644
--- a/examples/declarative/listview/recipes.qml
+++ b/examples/declarative/listview/recipes.qml
@@ -48,9 +48,9 @@ Rect {
VerticalPositioner {
height: recipePic.height; width: background.width-recipePic.width-20
spacing: 5
- Text { id: name; text: title; font.bold: true; font.size: 16 }
+ Text { id: name; text: title; font.bold: true; font.pointSize: 16 }
Text {
- text: "Ingredients"; font.size: 12; font.bold: true
+ text: "Ingredients"; font.pointSize: 12; font.bold: true
opacity: wrapper.detailsOpacity
}
Text {
@@ -67,7 +67,7 @@ Rect {
opacity: wrapper.detailsOpacity
Text {
id: methodTitle
- text: "Method"; font.size: 12; font.bold: true
+ text: "Method"; font.pointSize: 12; font.bold: true
anchors.top: parent.top
}
Flickable {