diff options
author | jan Iversen <jani@libreoffice.org> | 2018-05-21 17:22:34 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-05-21 12:48:04 -0700 |
commit | 034f9a6ca2eabcc4714214ca07207509b00e39a2 (patch) | |
tree | 60258f3122b199ec96b5e8d9aaaa9f207527fecf /mobile-widgets | |
parent | f47f2773fd4de5bfbb8d90e5e00dc18e0c18e5bb (diff) | |
download | subsurface-034f9a6ca2eabcc4714214ca07207509b00e39a2.tar.gz |
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>
Diffstat (limited to 'mobile-widgets')
-rw-r--r-- | mobile-widgets/qmlmanager.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp index 5000d494d..4434d3d20 100644 --- a/mobile-widgets/qmlmanager.cpp +++ b/mobile-widgets/qmlmanager.cpp @@ -1705,9 +1705,8 @@ void QMLManager::setStatusbarColor(QColor color) }); } #else -void QMLManager::setStatusbarColor(QColor color) +void QMLManager::setStatusbarColor(QColor) { - Q_UNUSED(color) // noop } |