summaryrefslogtreecommitdiffstats
path: root/profile-widget
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2020-03-03 23:17:08 +0100
committerGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2020-04-07 00:13:35 +0200
commit9a4718b46f5fa74c7c67a92d0c09ab805f364e12 (patch)
treee344542764813c1b6dfb41e945d8cb6e5bac3c91 /profile-widget
parentadb53f9c18070e524a2635c5a1d983556f21d5ea (diff)
downloadsubsurface-9a4718b46f5fa74c7c67a92d0c09ab805f364e12.tar.gz
undo: switch SetpointDialog from divecomputer to dive + dc-number
Since pointers to divecomputers may not be stable, the undo commands take a dive + a divecomputer number. Update the SetpointDialog accordingly. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'profile-widget')
-rw-r--r--profile-widget/profilewidget2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/profile-widget/profilewidget2.cpp b/profile-widget/profilewidget2.cpp
index 555305817..76b3c9afb 100644
--- a/profile-widget/profilewidget2.cpp
+++ b/profile-widget/profilewidget2.cpp
@@ -1611,7 +1611,7 @@ void ProfileWidget2::addDivemodeSwitch(int seconds, int divemode)
void ProfileWidget2::addSetpointChange(int seconds)
{
- SetpointDialog dialog(current_dc, seconds);
+ SetpointDialog dialog(current_dive, dc_number, seconds);
dialog.exec();
}