From 03f9e2914654b7c15045955ec2d331457cc89542 Mon Sep 17 00:00:00 2001 From: Berthold Stoeger Date: Thu, 30 Jan 2020 15:03:48 +0100 Subject: Profile: transport gas id and timestamp via lambda When adding a gas change event via a context menu, the gas-id and timestamp were passed in two distinct ways. 1) The gas id was extracted from the text of the action. This meant doing rather complicated parsing. 2) The timestamp was passed via the "user data" of the action, which means transporting via "QVariant". There is a much simpler way to pass arbitrary data, that is strongly typed: lambdas. Instead of shoehorning the data onto the action in an archaic way, we can simply connect to a stateful lambda. That's what they're for after all. Signed-off-by: Berthold Stoeger --- profile-widget/profilewidget2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'profile-widget/profilewidget2.h') diff --git a/profile-widget/profilewidget2.h b/profile-widget/profilewidget2.h index fadfbcbc9..aebce54aa 100644 --- a/profile-widget/profilewidget2.h +++ b/profile-widget/profilewidget2.h @@ -115,7 +115,6 @@ slots: // Necessary to call from QAction's signals. void removePictures(const QVector &fileUrls); void setPlanState(); void setAddState(); - void changeGas(); void addSetpointChange(); void splitDive(); void addBookmark(); @@ -162,6 +161,7 @@ protected: private: /*methods*/ + void changeGas(int tank, int seconds); void fixBackgroundPos(); void scrollViewTo(const QPoint &pos); void setupSceneAndFlags(); -- cgit v1.2.3-70-g09d2