diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-01-02 08:52:45 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-01-10 02:37:03 +0900 |
commit | 46441689b97b279845b3bb26299042890513a253 (patch) | |
tree | 7660ed4e69f238b04c39d929f47c17420fc06163 /desktop-widgets | |
parent | e6210aafc560c303fc72360dca877cde939db98b (diff) | |
download | subsurface-46441689b97b279845b3bb26299042890513a253.tar.gz |
code cleanup: mark unused argument
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'desktop-widgets')
-rw-r--r-- | desktop-widgets/locationinformation.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/desktop-widgets/locationinformation.cpp b/desktop-widgets/locationinformation.cpp index f7b33cae4..2f7b8ffb1 100644 --- a/desktop-widgets/locationinformation.cpp +++ b/desktop-widgets/locationinformation.cpp @@ -54,6 +54,7 @@ void LocationInformationWidget::keyPressEvent(QKeyEvent *e) bool LocationInformationWidget::eventFilter(QObject *object, QEvent *ev) { + Q_UNUSED(object) if (ev->type() == QEvent::ContextMenu) { QContextMenuEvent *ctx = (QContextMenuEvent *)ev; QMenu contextMenu; |