diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2018-11-22 23:28:06 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-11-23 13:22:24 -0800 |
commit | 1ebf5a99ed934d4cf5af937b638647d5c5c83e6d (patch) | |
tree | f8b6bc3098089b1ee8d41905b683565c84772457 /core | |
parent | 70897dd1b7d33f3d1f6b47acc587a7f33a176a04 (diff) | |
download | subsurface-1ebf5a99ed934d4cf5af937b638647d5c5c83e6d.tar.gz |
Filter: use hidden_by_filter also on mobile
Desktop used the hidden_in_filter flag in struct dive, mobile
used its own vector plus a new showndives member in struct dive_trip.
Unifiy these to use the same core-facility, viz. hidden_by_filter.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core')
-rw-r--r-- | core/dive.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/dive.h b/core/dive.h index eff04ba23..d360ccb16 100644 --- a/core/dive.h +++ b/core/dive.h @@ -288,7 +288,6 @@ typedef struct dive_trip char *location; char *notes; struct dive_table dives; - int showndives; /* Used by the io-routines to mark trips that have already been written. */ bool saved; bool autogen; |