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:
parent
56332031a5
commit
4de8eefa80
@ -290,7 +290,7 @@ void QUnifiedTimer::stopAnimationDriver()
|
||||
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
|
||||
if(insideTick)
|
||||
|
@ -185,7 +185,7 @@ public:
|
||||
|
||||
void restart();
|
||||
void maybeUpdateAnimationsToCurrentTime();
|
||||
void updateAnimationTimers(qint64 = -1); // ### Qt 6 - remove parameter once qtdeclarative is fixed
|
||||
void updateAnimationTimers();
|
||||
|
||||
//useful for profiling/debugging
|
||||
int runningAnimationCount();
|
||||
|
Loading…
Reference in New Issue
Block a user