diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-03-29 18:29:08 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-04-12 18:19:07 +0300 |
commit | 837ab6c90b7952095c0dadf2de18db883b0f5ecf (patch) | |
tree | 3e6a619cdda0b5cc06308887a2df265fa95fdf2f /desktop-widgets/tab-widgets/maintab.h | |
parent | bfb6a55707ffe1ffc36fddf2c98b9d5f91721317 (diff) | |
download | subsurface-837ab6c90b7952095c0dadf2de18db883b0f5ecf.tar.gz |
Desktop: read tab-items from current_dive, not displayed_dive
The whole edit logic moved from displayed_dive to current_dive
and it became more and more tedious to keep these in sync.
Therefore, simply always display current_dive. The only exceptions
are the equipment tab and the planner, as these are not yet
integrated in the undo system. Once this is done, displayed_dive
can be removed.
Moreover, remove the clear parameter from updateDiveInfo().
Instead simply clear of there is no current_dive set.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/tab-widgets/maintab.h')
-rw-r--r-- | desktop-widgets/tab-widgets/maintab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop-widgets/tab-widgets/maintab.h b/desktop-widgets/tab-widgets/maintab.h index 67657fe8d..59503fa06 100644 --- a/desktop-widgets/tab-widgets/maintab.h +++ b/desktop-widgets/tab-widgets/maintab.h @@ -63,7 +63,7 @@ slots: void tripChanged(dive_trip *trip, TripField field); void addCylinder_clicked(); void addWeight_clicked(); - void updateDiveInfo(bool clear = false); + void updateDiveInfo(); void updateNotes(const struct dive *d); void updateMode(struct dive *d); void updateDateTime(struct dive *d); |