mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
cleanup: remove record_dive() function
No user left. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
ed3e68c36a
commit
2da7b6d0f5
2 changed files with 0 additions and 6 deletions
|
@ -340,7 +340,6 @@ extern struct dive *alloc_dive(void);
|
||||||
extern void free_dive(struct dive *);
|
extern void free_dive(struct dive *);
|
||||||
extern void free_dive_dcs(struct divecomputer *dc);
|
extern void free_dive_dcs(struct divecomputer *dc);
|
||||||
extern void record_dive_to_table(struct dive *dive, struct dive_table *table);
|
extern void record_dive_to_table(struct dive *dive, struct dive_table *table);
|
||||||
extern void record_dive(struct dive *dive);
|
|
||||||
extern void clear_dive(struct dive *dive);
|
extern void clear_dive(struct dive *dive);
|
||||||
extern void copy_dive(const struct dive *s, struct dive *d);
|
extern void copy_dive(const struct dive *s, struct dive *d);
|
||||||
extern void selective_copy_dive(const struct dive *s, struct dive *d, struct dive_components what, bool clear);
|
extern void selective_copy_dive(const struct dive *s, struct dive *d, struct dive_components what, bool clear);
|
||||||
|
|
|
@ -81,11 +81,6 @@ void record_dive_to_table(struct dive *dive, struct dive_table *table)
|
||||||
add_to_dive_table(table, table->nr, fixup_dive(dive));
|
add_to_dive_table(table, table->nr, fixup_dive(dive));
|
||||||
}
|
}
|
||||||
|
|
||||||
void record_dive(struct dive *dive)
|
|
||||||
{
|
|
||||||
record_dive_to_table(dive, &dive_table);
|
|
||||||
}
|
|
||||||
|
|
||||||
void start_match(const char *type, const char *name, char *buffer)
|
void start_match(const char *type, const char *name, char *buffer)
|
||||||
{
|
{
|
||||||
if (verbose > 2)
|
if (verbose > 2)
|
||||||
|
|
Loading…
Reference in a new issue