Commit b6cb170b authored by Thiago Macieira's avatar Thiago Macieira Committed by Paolo Angelelli
Browse files

Fix warning about unused parameter only used in Q_ASSERT


Somehow MSVC still sees it as unused, despite our best efforts in
Q_ASSERT. So add Q_UNUSED.

 qdeclarativepinchgenerator.cpp(218) : warning C4100: 'event' : unreferenced formal parameter

Change-Id: I523b0abacd5148b2bf08fffd14b46aa8f8409f42
Reviewed-by: default avatarPaolo Angelelli <paolo.angelelli@qt.io>
Showing with 1 addition and 0 deletions
......@@ -218,6 +218,7 @@ void QDeclarativePinchGenerator::itemChange(ItemChange change, const ItemChangeD
void QDeclarativePinchGenerator::timerEvent(QTimerEvent *event)
{
Q_ASSERT(replayTimer_ == event->timerId());
Q_UNUSED(event);
Q_ASSERT(state_ == Replaying);
int slaveSwipe = masterSwipe_ ^ 1;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment