summaryrefslogtreecommitdiffstats
path: root/desktop-widgets/diveplanner.cpp
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2019-10-14 20:57:13 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-10-20 03:51:11 -0400
commitfdfcbd0315d04580bf10d7b9129fa32665dfeaae (patch)
tree8a7beb3796f6d6f4289c502ef95e31cf652351d3 /desktop-widgets/diveplanner.cpp
parent39c36af808047833cd6e4a9b7ab3567e41887766 (diff)
downloadsubsurface-fdfcbd0315d04580bf10d7b9129fa32665dfeaae.tar.gz
Cleanup: use pointer-to-member-function in addAction() calls
Since requiring Qt >= 5.9.1, we can use the pointer-to-member-function overloads of addAction (introduced in Qt 5.6). This has the advantage of compile-time checking of the signal/slot parameters. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/diveplanner.cpp')
-rw-r--r--desktop-widgets/diveplanner.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop-widgets/diveplanner.cpp b/desktop-widgets/diveplanner.cpp
index af19ed079..33caffd0d 100644
--- a/desktop-widgets/diveplanner.cpp
+++ b/desktop-widgets/diveplanner.cpp
@@ -63,7 +63,7 @@ void DiveHandler::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
// don't allow removing the last point
if (plannerModel->rowCount() > 1) {
m.addSeparator();
- m.addAction(gettextFromC::tr("Remove this point"), this, SLOT(selfRemove()));
+ m.addAction(gettextFromC::tr("Remove this point"), this, &DiveHandler::selfRemove);
m.exec(event->screenPos());
}
}