Remove default parameter from QUnifiedTimer::updateAnimationTimers

After adjustments in Qt Declarative, this parameter is no longer needed.

Change-Id: I4b398748277aa29edd06ac122cfa8984575abf97
Reviewed-by: Laszlo Agocs <laszlo.agocs@qt.io>
This commit is contained in:
Volker Hilsheimer 2020-09-02 11:24:25 +02:00
parent 56332031a5
commit 4de8eefa80
2 changed files with 2 additions and 2 deletions

View File

@ -290,7 +290,7 @@ void QUnifiedTimer::stopAnimationDriver()
driver->stop(); driver->stop();
} }
void QUnifiedTimer::updateAnimationTimers(qint64) void QUnifiedTimer::updateAnimationTimers()
{ {
//setCurrentTime can get this called again while we're the for loop. At least with pauseAnimations //setCurrentTime can get this called again while we're the for loop. At least with pauseAnimations
if(insideTick) if(insideTick)

View File

@ -185,7 +185,7 @@ public:
void restart(); void restart();
void maybeUpdateAnimationsToCurrentTime(); void maybeUpdateAnimationsToCurrentTime();
void updateAnimationTimers(qint64 = -1); // ### Qt 6 - remove parameter once qtdeclarative is fixed void updateAnimationTimers();
//useful for profiling/debugging //useful for profiling/debugging
int runningAnimationCount(); int runningAnimationCount();