mobile-widgets: Change Q_UNUSED to no parameter name

C++ permits use of parameters without name, which signals unused

Signed-off-by: Jan Iversen <jani@apache.org>
This commit is contained in:
jan Iversen 2018-05-21 17:22:34 +02:00 committed by Dirk Hohndel
parent f47f2773fd
commit 034f9a6ca2

View file

@ -1705,9 +1705,8 @@ void QMLManager::setStatusbarColor(QColor color)
}); });
} }
#else #else
void QMLManager::setStatusbarColor(QColor color) void QMLManager::setStatusbarColor(QColor)
{ {
Q_UNUSED(color)
// noop // noop
} }