diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2020-05-02 14:41:52 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-05-03 15:02:21 -0700 |
commit | f961ec7a8b399683b5b9aedc56827fa307511487 (patch) | |
tree | 5723cc305f2a6252dbc3b681af0643b32e0176e3 /core/divelist.c | |
parent | 09b7fcbcf4e26d19529486ddd2a0e672e60dce32 (diff) | |
download | subsurface-f961ec7a8b399683b5b9aedc56827fa307511487.tar.gz |
selection: introduce clear_selection() function
The DiveListView would touch the selection-innards directly.
Let's encapsulate that. Moreover, take care to reset the trip
selection when resetting the core data.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/divelist.c')
-rw-r--r-- | core/divelist.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/divelist.c b/core/divelist.c index 778811db5..4325df595 100644 --- a/core/divelist.c +++ b/core/divelist.c @@ -1354,6 +1354,7 @@ int get_dive_id_closest_to(timestamp_t when) void clear_dive_file_data() { fulltext_unregister_all(); + clear_selection(); while (dive_table.nr) delete_single_dive(0); |