diff options
author | Kent Hansen <khansen@trolltech.com> | 2009-04-21 09:58:03 (GMT) |
---|---|---|
committer | Kent Hansen <khansen@trolltech.com> | 2009-04-21 09:58:03 (GMT) |
commit | 9fa9221af7ca452d19a0754f38d81299ad749dbc (patch) | |
tree | b1a3b741d386f8a22cc808808c353091549e3c67 /examples/animation/easing/window.cpp | |
parent | ea8bc5be8cea04da86b8df53cbde22b71f532585 (diff) | |
parent | 965a0d60fe28666471e9ffb99a7e97097254a4cc (diff) | |
download | Qt-9fa9221af7ca452d19a0754f38d81299ad749dbc.zip Qt-9fa9221af7ca452d19a0754f38d81299ad749dbc.tar.gz Qt-9fa9221af7ca452d19a0754f38d81299ad749dbc.tar.bz2 |
Merge branch 'kinetic-animations' into kinetic-statemachine
Diffstat (limited to 'examples/animation/easing/window.cpp')
-rw-r--r-- | examples/animation/easing/window.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/animation/easing/window.cpp b/examples/animation/easing/window.cpp index c6ea360..bb45770 100644 --- a/examples/animation/easing/window.cpp +++ b/examples/animation/easing/window.cpp @@ -88,7 +88,7 @@ void Window::startAnimation() m_anim->setStartValue(QPointF(0, 0)); m_anim->setEndValue(QPointF(100, 100)); m_anim->setDuration(2000); - m_anim->setIterationCount(-1); // forever + m_anim->setLoopCount(-1); // forever m_anim->start(); } |