summaryrefslogtreecommitdiffstats
path: root/src/declarative/util/qmlanimation.cpp
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2009-04-22 06:55:04 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2009-04-22 06:55:04 (GMT)
commita1458a0426caa71bab4527ca079c3004bb2b5abd (patch)
treef66a911fbc093fd40e5c2f13cdb241149d9c4d4b /src/declarative/util/qmlanimation.cpp
parentbef4438eea6fc44ef81c63772e10d2390586d16c (diff)
downloadQt-a1458a0426caa71bab4527ca079c3004bb2b5abd.zip
Qt-a1458a0426caa71bab4527ca079c3004bb2b5abd.tar.gz
Qt-a1458a0426caa71bab4527ca079c3004bb2b5abd.tar.bz2
Make compile
I've temporarily commented out the body of qguivariantanimation.cpp so we can compile.
Diffstat (limited to 'src/declarative/util/qmlanimation.cpp')
-rw-r--r--src/declarative/util/qmlanimation.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/declarative/util/qmlanimation.cpp b/src/declarative/util/qmlanimation.cpp
index 803f2b2..729d53a 100644
--- a/src/declarative/util/qmlanimation.cpp
+++ b/src/declarative/util/qmlanimation.cpp
@@ -323,8 +323,8 @@ void QmlAbstractAnimation::setRepeat(bool r)
return;
d->repeat = r;
- int ic = r ? -1 : 1;
- qtAnimation()->setIterationCount(ic);
+ int lc = r ? -1 : 1;
+ qtAnimation()->setLoopCount(lc);
emit repeatChanged(r);
}