diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2020-02-18 16:24:12 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-03-10 09:25:57 -0700 |
commit | 857e591a59b17035fd70de1405356e22ade25ce1 (patch) | |
tree | d38c286cd60f21ca20288b9a7473e3f9dc967ef6 | |
parent | 65fe892cba622ef2b9a5f7ec70e78eb98909f90c (diff) | |
download | subsurface-857e591a59b17035fd70de1405356e22ade25ce1.tar.gz |
mobile: remove dive::collapsed
This was used by the old dive-list to mark collapsed entries.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
-rw-r--r-- | core/dive.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/core/dive.h b/core/dive.h index 55858932d..58d79cc37 100644 --- a/core/dive.h +++ b/core/dive.h @@ -172,9 +172,6 @@ struct dive { bool selected; bool hidden_by_filter; struct full_text_cache *full_text; /* word cache for full text search */ -#if defined(SUBSURFACE_MOBILE) - uint8_t collapsed; /* four values: 0 = don't show, 1 = show as dive, 2 = show corresponding trip, 3 = show dive and trip */ -#endif }; /* For the top-level list: an entry is either a dive or a trip */ |