summaryrefslogtreecommitdiffstats
path: root/examples/declarative/tutorials/samegame/samegame4/samegame.qml
diff options
context:
space:
mode:
authorBea Lam <bea.lam@nokia.com>2010-04-13 00:41:28 (GMT)
committerBea Lam <bea.lam@nokia.com>2010-04-13 04:49:31 (GMT)
commit269ffcb59df843cb44c7d0b89b2e648af96f0f06 (patch)
tree9c95e3432035ef99282fa9e100c0e78ef2643feb /examples/declarative/tutorials/samegame/samegame4/samegame.qml
parent24163ea3fee49649ce0ef44bd7b25de78c618e27 (diff)
downloadQt-269ffcb59df843cb44c7d0b89b2e648af96f0f06.zip
Qt-269ffcb59df843cb44c7d0b89b2e648af96f0f06.tar.gz
Qt-269ffcb59df843cb44c7d0b89b2e648af96f0f06.tar.bz2
Fix score from previous change
Diffstat (limited to 'examples/declarative/tutorials/samegame/samegame4/samegame.qml')
-rw-r--r--examples/declarative/tutorials/samegame/samegame4/samegame.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/declarative/tutorials/samegame/samegame4/samegame.qml b/examples/declarative/tutorials/samegame/samegame4/samegame.qml
index c83743b..b2a490d 100644
--- a/examples/declarative/tutorials/samegame/samegame4/samegame.qml
+++ b/examples/declarative/tutorials/samegame/samegame4/samegame.qml
@@ -80,7 +80,7 @@ Rectangle {
Text {
id: score
anchors { right: parent.right; rightMargin: 3; verticalCenter: parent.verticalCenter }
- text: "Score: Who knows?"
+ text: "Score: " + gameCanvas.score
font.bold: true
}
}