summaryrefslogtreecommitdiffstats
path: root/src/corelib/animation/qabstractanimation_p.h
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2011-05-10 13:43:58 +1000
committerAlan Alpert <alan.alpert@nokia.com>2011-05-10 13:43:58 +1000
commit8fb592846930f09ff465442fd10e522226963968 (patch)
treef736387c6a2e54793a976e04e59fdfaa7baccaca /src/corelib/animation/qabstractanimation_p.h
parent7eef0de0912a2084dda47f2a862af8e6064b9a64 (diff)
Fix QDefaultAnimationDriver
Animation drivers were changed to used signals instead of virtual functions, but the default animation driver was left behind. Reviewed-by: Michael Brasser
Diffstat (limited to 'src/corelib/animation/qabstractanimation_p.h')
-rw-r--r--src/corelib/animation/qabstractanimation_p.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/corelib/animation/qabstractanimation_p.h b/src/corelib/animation/qabstractanimation_p.h
index de26987721..3389414995 100644
--- a/src/corelib/animation/qabstractanimation_p.h
+++ b/src/corelib/animation/qabstractanimation_p.h
@@ -124,8 +124,9 @@ public:
QDefaultAnimationDriver(QUnifiedTimer *timer);
void timerEvent(QTimerEvent *e);
- void started();
- void stopped();
+private Q_SLOTS:
+ void startTimer();
+ void stopTimer();
private:
QBasicTimer m_timer;