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();
|
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)
|
||||||
|
@ -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();
|
||||||
|
Loading…
Reference in New Issue
Block a user