diff options
author | jan Iversen <jani@libreoffice.org> | 2018-05-21 18:20:29 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-05-21 12:48:04 -0700 |
commit | 065af62f59c2244cf0c80e54218692c95dd7c0cd (patch) | |
tree | 6daf067763e839d78f40b565a180d2c57242e3c5 /profile-widget/divepixmapitem.cpp | |
parent | f92daa456ad343254a8fbde01660ae8160678fc4 (diff) | |
download | subsurface-065af62f59c2244cf0c80e54218692c95dd7c0cd.tar.gz |
profile-widget: 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 'profile-widget/divepixmapitem.cpp')
-rw-r--r-- | profile-widget/divepixmapitem.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/profile-widget/divepixmapitem.cpp b/profile-widget/divepixmapitem.cpp index 27fea611b..58d6f2776 100644 --- a/profile-widget/divepixmapitem.cpp +++ b/profile-widget/divepixmapitem.cpp @@ -82,9 +82,8 @@ void DivePictureItem::setPixmap(const QPixmap &pix) boundingRect().height() - button->boundingRect().height() * 0.2); } -void DivePictureItem::hoverEnterEvent(QGraphicsSceneHoverEvent *event) +void DivePictureItem::hoverEnterEvent(QGraphicsSceneHoverEvent*) { - Q_UNUSED(event); Animations::scaleTo(this, 1.0); setZValue(5); @@ -98,9 +97,8 @@ void DivePictureItem::setFileUrl(const QString &s) fileUrl = s; } -void DivePictureItem::hoverLeaveEvent(QGraphicsSceneHoverEvent *event) +void DivePictureItem::hoverLeaveEvent(QGraphicsSceneHoverEvent*) { - Q_UNUSED(event); Animations::scaleTo(this, 0.2); setZValue(0); Animations::hide(button); |