diff -r 730c025d4b77 -r f378acbc9cfb src/hbcore/utils/hbtimer.cpp --- a/src/hbcore/utils/hbtimer.cpp Thu Jul 15 14:03:49 2010 +0100 +++ b/src/hbcore/utils/hbtimer.cpp Thu Jul 22 16:36:53 2010 +0100 @@ -39,19 +39,20 @@ { public: HbTimerAnim(HbTimerEntry *entry) : mEntry(entry), mDuration(entry->interval()) { } - int duration() const { return mDuration; } + int duration() const { + return mDuration; + } void updateCurrentTime(int) { } - void updateState(QAbstractAnimation::State newState, QAbstractAnimation::State oldState) - { - if (oldState != QAbstractAnimation::Stopped && newState == QAbstractAnimation::Stopped && mEntry) { - mEntry->timerFired(); - mEntry->mAnim = 0; // to prevent confusing unregisterEntry() and double deletion - HbTimer::instance()->unregisterEntry(mEntry); - if (mEntry->mDeleteWhenFinishedNormally) { - delete mEntry; - } + void updateState(QAbstractAnimation::State newState, QAbstractAnimation::State oldState) { + if (oldState != QAbstractAnimation::Stopped && newState == QAbstractAnimation::Stopped && mEntry) { + mEntry->timerFired(); + mEntry->mAnim = 0; // to prevent confusing unregisterEntry() and double deletion + HbTimer::instance()->unregisterEntry(mEntry); + if (mEntry->mDeleteWhenFinishedNormally) { + delete mEntry; } } + } HbTimerEntry *mEntry; int mDuration; };