mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Make add_dc_to_string() skip redundant entries
There is no point writing out divecomputer nicknames that do not exist (or that match the dive computer model), so don't. Also, make the function to do this static to save-xml.c, which is the only user (I initially didn't _find_ the function to create the XML string because it was illogically hidden in gtk-gui.c), and change the calling convention to be more direct (pass in a string and return a result, rather than modify a "pointer to string"). Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
fc1bb0a32c
commit
3b136f23ee
3 changed files with 33 additions and 36 deletions
1
dive.h
1
dive.h
|
@ -530,7 +530,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 void add_dc_to_string(char **dc_xml, struct divecomputer *dc);
|
||||
|
||||
#define DIVE_ERROR_PARSE 1
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue