diff options
author | Bea Lam <bea.lam@nokia.com> | 2010-04-01 02:49:35 (GMT) |
---|---|---|
committer | Bea Lam <bea.lam@nokia.com> | 2010-04-01 05:10:50 (GMT) |
commit | 919ee9dd93ad382ddd813d58a356fd3f8d179046 (patch) | |
tree | 08f89cc2c90f9cc85318d2e32c0b305310fe9965 /examples/declarative/tutorials/samegame/samegame1/samegame.qml | |
parent | 7e94b6e0f706284088d52054ef0d1be0a13ea186 (diff) | |
download | Qt-919ee9dd93ad382ddd813d58a356fd3f8d179046.zip Qt-919ee9dd93ad382ddd813d58a356fd3f8d179046.tar.gz Qt-919ee9dd93ad382ddd813d58a356fd3f8d179046.tar.bz2 |
Doc improvements, fixes
Diffstat (limited to 'examples/declarative/tutorials/samegame/samegame1/samegame.qml')
-rw-r--r-- | examples/declarative/tutorials/samegame/samegame1/samegame.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/declarative/tutorials/samegame/samegame1/samegame.qml b/examples/declarative/tutorials/samegame/samegame1/samegame.qml index 5ed30c9..006b926 100644 --- a/examples/declarative/tutorials/samegame/samegame1/samegame.qml +++ b/examples/declarative/tutorials/samegame/samegame1/samegame.qml @@ -24,7 +24,7 @@ Rectangle { anchors.bottom: screen.bottom Button { - id: btnA; text: "New Game"; onClicked: console.log("Implement me!"); + id: btnA; text: "New Game"; onClicked: console.log("Starting a new game..."); anchors.left: parent.left; anchors.leftMargin: 3 anchors.verticalCenter: parent.verticalCenter } |