summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorBea Lam <bea.lam@nokia.com>2010-04-13 10:41:28 +1000
committerBea Lam <bea.lam@nokia.com>2010-04-13 14:49:31 +1000
commit269ffcb59df843cb44c7d0b89b2e648af96f0f06 (patch)
tree9c95e3432035ef99282fa9e100c0e78ef2643feb /examples
parent24163ea3fee49649ce0ef44bd7b25de78c618e27 (diff)
downloadqt4-tools-269ffcb59df843cb44c7d0b89b2e648af96f0f06.tar.gz
Fix score from previous change
Diffstat (limited to 'examples')
-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 c83743b763..b2a490d337 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
}
}