diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2018-10-03 21:14:11 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-10-06 19:47:06 -0700 |
commit | ab14889563317b561eb22ad46d05f302cc582600 (patch) | |
tree | c12edebf14d86a77a289d5535411934ca09809d7 /qt-models/divetripmodel.cpp | |
parent | 810903bdb9db84997dc3d32bb8e934e320784a4d (diff) | |
download | subsurface-ab14889563317b561eb22ad46d05f302cc582600.tar.gz |
Core: remove preexisting field from struct dive_table
Dives are now in all cases imported via distinct dive_tables.
Therefore the "preexisting" marker is useless. Remove.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'qt-models/divetripmodel.cpp')
-rw-r--r-- | qt-models/divetripmodel.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/qt-models/divetripmodel.cpp b/qt-models/divetripmodel.cpp index 41c8dea80..f0d167432 100644 --- a/qt-models/divetripmodel.cpp +++ b/qt-models/divetripmodel.cpp @@ -611,7 +611,6 @@ void DiveTripModel::setupModelData() clear(); if (autogroup) autogroup_dives(); - dive_table.preexisting = dive_table.nr; QMap<dive_trip_t *, TripItem *> trips; while (--i >= 0) { struct dive *dive = get_dive(i); |