diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2018-11-23 15:18:59 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-01-09 20:58:04 -0800 |
commit | f8327ed51bc2298e2c7ef69a1ef0f82509e8d8d4 (patch) | |
tree | 932758970f9967a25d7958ad830cd0ab08594a00 /qt-models/diveimportedmodel.cpp | |
parent | 7923507e76e8d64c6c457664ec59f10c884a9fb0 (diff) | |
download | subsurface-f8327ed51bc2298e2c7ef69a1ef0f82509e8d8d4.tar.gz |
Core: move autogroup() into divelist.c
After loading or importing, the caller usually called autogroup()
to autogroup dives if so wished by the user. This has already led
to bugs, when autogroup() was forgotten.
Instead, call autogroup() directly in the process_loaded_dives()
and process_imported_dives() functions. Not only does this prevent
forgetting the call - it also means that autogrouping can be
changed without changing every caller.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'qt-models/diveimportedmodel.cpp')
-rw-r--r-- | qt-models/diveimportedmodel.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/qt-models/diveimportedmodel.cpp b/qt-models/diveimportedmodel.cpp index 3e8386b94..ec450d53f 100644 --- a/qt-models/diveimportedmodel.cpp +++ b/qt-models/diveimportedmodel.cpp @@ -157,7 +157,6 @@ void DiveImportedModel::recordDives() } process_imported_dives(diveTable, true, true); - autogroup_dives(); } QHash<int, QByteArray> DiveImportedModel::roleNames() const { |