diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2009-10-28 06:05:49 (GMT) |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2009-10-28 06:05:49 (GMT) |
commit | d14b406afb2286583c4efdd32522a82f9c130d52 (patch) | |
tree | d1b3f6cb442d01c27212df60d8c0e3ede79b7ebb /demos | |
parent | 06ea501e617ec04b786906ca1bc15db452d03d0a (diff) | |
parent | a168b0308b9977f01ae49b4c831d120df0dea951 (diff) | |
download | Qt-d14b406afb2286583c4efdd32522a82f9c130d52.zip Qt-d14b406afb2286583c4efdd32522a82f9c130d52.tar.gz Qt-d14b406afb2286583c4efdd32522a82f9c130d52.tar.bz2 |
Merge branch 'kinetic-declarativeui' of scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'demos')
-rw-r--r-- | demos/declarative/minehunt/minehunt.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/declarative/minehunt/minehunt.qml b/demos/declarative/minehunt/minehunt.qml index f1b7df0..e71ce90 100644 --- a/demos/declarative/minehunt/minehunt.qml +++ b/demos/declarative/minehunt/minehunt.qml @@ -96,7 +96,7 @@ Item { properties: "angle" } ScriptAction{ - script: "if(modelData.hasMine && modelData.flipped){expl.explode = true;}" + script: if(modelData.hasMine && modelData.flipped){expl.explode = true;} } } } |