aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/util/qquickanimatorjob.cpp
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2015-05-14 06:20:57 +0900
committerThiago Macieira <thiago.macieira@intel.com>2015-07-07 16:16:51 +0000
commitb69449b0a148d1546205cd8ca36ba87f88b449e6 (patch)
treec9ddbea163228ea73ba08989718f048a7dec0084 /src/quick/util/qquickanimatorjob.cpp
parentc802a8582258ca9ad1cc800a9c8e6e46b2ff6f0e (diff)
Fix more casts that dropped the constness.
Found with GCC's -Wcast-qual Change-Id: I66a35ce5f88941f29aa6ffff13dde502fccefb1d Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'src/quick/util/qquickanimatorjob.cpp')
-rw-r--r--src/quick/util/qquickanimatorjob.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/quick/util/qquickanimatorjob.cpp b/src/quick/util/qquickanimatorjob.cpp
index 8b617e5e3f..2a8e3c281c 100644
--- a/src/quick/util/qquickanimatorjob.cpp
+++ b/src/quick/util/qquickanimatorjob.cpp
@@ -136,7 +136,7 @@ void QQuickAnimatorProxyJob::updateState(QAbstractAnimationJob::State newState,
void QQuickAnimatorProxyJob::debugAnimation(QDebug d) const
{
- d << "QuickAnimatorProxyJob("<< hex << (void *) this << dec
+ d << "QuickAnimatorProxyJob("<< hex << (const void *) this << dec
<< "state:" << state() << "duration:" << duration()
<< "proxying: (" << job() << ')';
}
@@ -225,7 +225,7 @@ QQuickAnimatorJob::QQuickAnimatorJob()
void QQuickAnimatorJob::debugAnimation(QDebug d) const
{
- d << "QuickAnimatorJob(" << hex << (void *) this << dec
+ d << "QuickAnimatorJob(" << hex << (const void *) this << dec
<< ") state:" << state() << "duration:" << duration()
<< "target:" << m_target << "value:" << m_value;
}