diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2009-04-22 06:55:04 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2009-04-22 06:55:04 (GMT) |
commit | a1458a0426caa71bab4527ca079c3004bb2b5abd (patch) | |
tree | f66a911fbc093fd40e5c2f13cdb241149d9c4d4b /src/declarative | |
parent | bef4438eea6fc44ef81c63772e10d2390586d16c (diff) | |
download | Qt-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')
-rw-r--r-- | src/declarative/util/qmlanimation.cpp | 4 |
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); } |