summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2009-05-08 05:17:39 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2009-05-08 05:17:39 (GMT)
commitf7a9bffd11efce32f0fa318c01de8c8088fe4d95 (patch)
treec8c74e8f3b718d1bfee5f27cdf472f05cc7c9d20
parent90057dabcb99759bcb42c1c21db7151c69d98706 (diff)
downloadQt-f7a9bffd11efce32f0fa318c01de8c8088fe4d95.zip
Qt-f7a9bffd11efce32f0fa318c01de8c8088fe4d95.tar.gz
Qt-f7a9bffd11efce32f0fa318c01de8c8088fe4d95.tar.bz2
Correct spelling. setConsitentTiming -> setConsistentTiming
-rw-r--r--src/corelib/animation/qabstractanimation.cpp2
-rw-r--r--src/corelib/animation/qabstractanimation_p.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/animation/qabstractanimation.cpp b/src/corelib/animation/qabstractanimation.cpp
index 6a824b6..f5b9323 100644
--- a/src/corelib/animation/qabstractanimation.cpp
+++ b/src/corelib/animation/qabstractanimation.cpp
@@ -205,7 +205,7 @@ void QUnifiedTimer::setTimingInterval(int interval)
this allows to have a consistent timer interval at each tick from the timer
not taking the real time that passed into account.
*/
-void QUnifiedTimer::setConsitentTiming(bool b)
+void QUnifiedTimer::setConsistentTiming(bool b)
{
consistentTiming = b;
}
diff --git a/src/corelib/animation/qabstractanimation_p.h b/src/corelib/animation/qabstractanimation_p.h
index 49c0195..41983a5 100644
--- a/src/corelib/animation/qabstractanimation_p.h
+++ b/src/corelib/animation/qabstractanimation_p.h
@@ -122,7 +122,7 @@ public:
void unregisterAnimation(QAbstractAnimation *animation);
void setTimingInterval(int interval);
- void setConsitentTiming(bool consistent);
+ void setConsistentTiming(bool consistent);
int elapsedTime() const;