summaryrefslogtreecommitdiffstats
path: root/examples/animation/easing
diff options
context:
space:
mode:
authorThierry Bastian <thierry.bastian@nokia.com>2009-04-20 14:44:29 +0200
committerThierry Bastian <thierry.bastian@nokia.com>2009-04-20 15:28:38 +0200
commit2e679706b28ade66cb55ace1e9bfae42dd5044ea (patch)
tree010add57eb4d9d3e60d0fd98c672c7fc94355c2b /examples/animation/easing
parent5b985f0a33946e77b133ee761613858b1057bcdd (diff)
iterationCount becomes loopCount again
Diffstat (limited to 'examples/animation/easing')
-rw-r--r--examples/animation/easing/window.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/animation/easing/window.cpp b/examples/animation/easing/window.cpp
index c6ea3609b2..bb45770578 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();
}