diff options
author | Bea Lam <bea.lam@nokia.com> | 2010-04-13 00:41:28 (GMT) |
---|---|---|
committer | Bea Lam <bea.lam@nokia.com> | 2010-04-13 04:49:31 (GMT) |
commit | 269ffcb59df843cb44c7d0b89b2e648af96f0f06 (patch) | |
tree | 9c95e3432035ef99282fa9e100c0e78ef2643feb /examples | |
parent | 24163ea3fee49649ce0ef44bd7b25de78c618e27 (diff) | |
download | Qt-269ffcb59df843cb44c7d0b89b2e648af96f0f06.zip Qt-269ffcb59df843cb44c7d0b89b2e648af96f0f06.tar.gz Qt-269ffcb59df843cb44c7d0b89b2e648af96f0f06.tar.bz2 |
Fix score from previous change
Diffstat (limited to 'examples')
-rw-r--r-- | examples/declarative/tutorials/samegame/samegame4/samegame.qml | 2 |
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 } } |