summaryrefslogtreecommitdiffstats
path: root/examples/animation/moveblocks
diff options
context:
space:
mode:
authorKent Hansen <khansen@trolltech.com>2009-04-24 09:58:57 (GMT)
committerKent Hansen <khansen@trolltech.com>2009-04-24 09:58:57 (GMT)
commitdfe6974c1e7103ad46fa1162d7c9fd6a426894b7 (patch)
tree94b0475734945c9de24a472f70c3bedcd485aee6 /examples/animation/moveblocks
parent686f82e51124747cbe650d04dfb053830b6660fa (diff)
parent221ec8dae1b247d5f8fb03d947d13cb6541a5805 (diff)
downloadQt-dfe6974c1e7103ad46fa1162d7c9fd6a426894b7.zip
Qt-dfe6974c1e7103ad46fa1162d7c9fd6a426894b7.tar.gz
Qt-dfe6974c1e7103ad46fa1162d7c9fd6a426894b7.tar.bz2
Merge branch 'kinetic-statemachine' into kinetic-animations
Conflicts: examples/animation/piemenu/qgraphicspiemenu_p.h
Diffstat (limited to 'examples/animation/moveblocks')
-rw-r--r--examples/animation/moveblocks/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/animation/moveblocks/main.cpp b/examples/animation/moveblocks/main.cpp
index 076da59..eb23bd5 100644
--- a/examples/animation/moveblocks/main.cpp
+++ b/examples/animation/moveblocks/main.cpp
@@ -202,7 +202,7 @@ int main(int argc, char **argv)
QTimer timer;
timer.setInterval(1250);
timer.setSingleShot(true);
- group->invokeMethodOnEntry(&timer, "start");
+ QObject::connect(group, SIGNAL(entered()), &timer, SLOT(start()));
QState *state1;
QState *state2;