diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2009-10-06 02:51:22 (GMT) |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2009-10-06 02:51:22 (GMT) |
commit | b9663faad39ae02b7dbee9f2cea7dce7d25894f8 (patch) | |
tree | b46fa4f56750ce70d24ed42fc4de284de5bbea97 /demos/declarative/minehunt | |
parent | abf7649fb60a87208a3d915d97f4fee9bee02f26 (diff) | |
download | Qt-b9663faad39ae02b7dbee9f2cea7dce7d25894f8.zip Qt-b9663faad39ae02b7dbee9f2cea7dce7d25894f8.tar.gz Qt-b9663faad39ae02b7dbee9f2cea7dce7d25894f8.tar.bz2 |
lowercase ids
Diffstat (limited to 'demos/declarative/minehunt')
-rw-r--r-- | demos/declarative/minehunt/Description.qml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/demos/declarative/minehunt/Description.qml b/demos/declarative/minehunt/Description.qml index df4881c..440dd2e 100644 --- a/demos/declarative/minehunt/Description.qml +++ b/demos/declarative/minehunt/Description.qml @@ -1,12 +1,12 @@ import Qt 4.6 Item { - id: Page - height: MyText.height + 20 + id: page + height: myText.height + 20 property var text MouseRegion { anchors.fill: parent - drag.target: Page + drag.target: page drag.axis: "XandYAxis" drag.minimumX: 0 drag.maximumX: 1000 @@ -24,8 +24,8 @@ Item { width: parent.width - 20 height: parent.height - 20 Text { - id: MyText - text: Page.text + id: myText + text: page.text width: parent.width clip: true wrap: true |