summaryrefslogtreecommitdiffstats
path: root/profile-widget/diveeventitem.h
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2021-01-09 18:58:33 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2021-01-10 15:57:39 -0800
commitbe9f9efb0eae6f09db4c61de7a5156b186dc2ad6 (patch)
tree39e661e97de294d2de514048aa625f58d08a4f88 /profile-widget/diveeventitem.h
parent09287809ebb76541a31af94e60856f731e3e9d37 (diff)
downloadsubsurface-be9f9efb0eae6f09db4c61de7a5156b186dc2ad6.tar.gz
profile: pass dive to EventItem
Don't access the global displayed_dive variable in an effort to make the profile reentrant. Note that this still accesses the global dc_number variable, which will likely have to be removed. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'profile-widget/diveeventitem.h')
-rw-r--r--profile-widget/diveeventitem.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/profile-widget/diveeventitem.h b/profile-widget/diveeventitem.h
index 0c065e131..1b2c1c5ba 100644
--- a/profile-widget/diveeventitem.h
+++ b/profile-widget/diveeventitem.h
@@ -13,7 +13,7 @@ class DiveEventItem : public DivePixmapItem {
public:
DiveEventItem(QGraphicsItem *parent = 0);
~DiveEventItem();
- void setEvent(struct event *ev, struct gasmix lastgasmix);
+ void setEvent(const struct dive *d, struct event *ev, struct gasmix lastgasmix);
struct event *getEvent();
void eventVisibilityChanged(const QString &eventName, bool visible);
void setVerticalAxis(DiveCartesianAxis *axis, int speed);
@@ -32,6 +32,7 @@ private:
DiveCartesianAxis *hAxis;
DivePlotDataModel *dataModel;
struct event *internalEvent;
+ const struct dive *dive;
};
#endif // DIVEEVENTITEM_H