diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-01-24 11:42:20 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-01-24 12:59:31 -0800 |
commit | 52050fdc921bc6404ae637eee6169b684f62c244 (patch) | |
tree | 7c75c55c5cd897a5ad544e110844c5ec30a133e9 /dive.h | |
parent | 9acb52b9ee01e4f10bfab1462f2cf65505f9e054 (diff) | |
download | subsurface-52050fdc921bc6404ae637eee6169b684f62c244.tar.gz |
Save all dive computer nicknames - whether used or not
We used to save dive computer information only if that dive computer was
actually used in any of the dives we saved. But we can simplify the
code if we just always save any dive computers we know about. And it
does allow for some usage cases where you have nicknames for other
peoples computers that you may not actively use, but you want to see if
you end up loading multiple XML files in one go.
So there's just no compelling reason to not just save all the info we
have. And this will make it less painful to remove the "use system
config for dive computer nicknames", because you can also use this to
continue to gather dive computer info in a separate XML file if you want
to.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'dive.h')
-rw-r--r-- | dive.h | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -538,8 +538,6 @@ extern void flush_divelist(struct dive *dive); extern void set_dc_nickname(struct dive *dive); extern const char *get_dc_nickname(const char *model, uint32_t deviceid); extern void remember_dc(const char *model, uint32_t deviceid, const char *nickname, gboolean change_conf); -extern gboolean dc_was_saved(struct divecomputer *dc); -extern void mark_dc_saved(struct divecomputer *dc); extern void set_autogroup(gboolean value); extern int total_weight(struct dive *); |