summaryrefslogtreecommitdiffstats
path: root/examples/declarative/loader
diff options
context:
space:
mode:
authorYann Bodson <yann.bodson@nokia.com>2009-10-28 05:27:42 (GMT)
committerYann Bodson <yann.bodson@nokia.com>2009-10-28 05:27:42 (GMT)
commita8f312c84d2c21f8f1c21a99f3dd3428fd16b2fa (patch)
treecf77131c792a8c56fb135749db5c370495c9e40a /examples/declarative/loader
parent1e7318348848ff7f51446ae90021051a494e3cb8 (diff)
downloadQt-a8f312c84d2c21f8f1c21a99f3dd3428fd16b2fa.zip
Qt-a8f312c84d2c21f8f1c21a99f3dd3428fd16b2fa.tar.gz
Qt-a8f312c84d2c21f8f1c21a99f3dd3428fd16b2fa.tar.bz2
cleanup
Diffstat (limited to 'examples/declarative/loader')
-rw-r--r--examples/declarative/loader/Browser.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/declarative/loader/Browser.qml b/examples/declarative/loader/Browser.qml
index 9e54758..f2cbd3d 100644
--- a/examples/declarative/loader/Browser.qml
+++ b/examples/declarative/loader/Browser.qml
@@ -81,7 +81,7 @@ Rectangle {
}
Text {
id: nameText
- anchors.fill: parent; verticalAlignment: "AlignVCenter"
+ anchors.fill: parent; verticalAlignment: Text.AlignVCenter
text: fileName; anchors.leftMargin: 48
font.pixelSize: 32
color: wrapper.isCurrentItem ? palette.highlightedText : palette.text
@@ -225,7 +225,7 @@ Rectangle {
anchors.left: upButton.right; anchors.right: parent.right; height: parent.height
anchors.leftMargin: 4; anchors.rightMargin: 4
text: folders.folder; color: "white"
- elide: "ElideLeft"; horizontalAlignment: "AlignRight"; verticalAlignment: "AlignVCenter"
+ elide: Text.ElideLeft; horizontalAlignment: Text.AlignRight; verticalAlignment: Text.AlignVCenter
font.pixelSize: 32
}
}