From 32d87db8b35c1c3c4d66f2184ff8f4d97629e2cc Mon Sep 17 00:00:00 2001 From: Berthold Stoeger Date: Sat, 2 May 2020 14:19:46 +0200 Subject: [PATCH] cleanup: remove unused function append_dive() Signed-off-by: Berthold Stoeger --- core/divelist.c | 9 --------- core/divelist.h | 1 - 2 files changed, 10 deletions(-) diff --git a/core/divelist.c b/core/divelist.c index 579886b02..778811db5 100644 --- a/core/divelist.c +++ b/core/divelist.c @@ -786,15 +786,6 @@ void delete_single_dive(int idx) delete_dive_from_table(&dive_table, idx); } -/* add a dive at the end of the global dive table and keep track - * of the number of selected dives. */ -void append_dive(struct dive *dive) -{ - add_to_dive_table(&dive_table, dive_table.nr, dive); - if (dive->selected) - amount_selected++; -} - int shown_dives = 0; bool filter_dive(struct dive *d, bool shown) { diff --git a/core/divelist.h b/core/divelist.h index e0c0058ad..cee52f9c4 100644 --- a/core/divelist.h +++ b/core/divelist.h @@ -46,7 +46,6 @@ extern char *get_dive_gas_string(const struct dive *dive); extern int dive_table_get_insertion_index(struct dive_table *table, struct dive *dive); extern void add_to_dive_table(struct dive_table *table, int idx, struct dive *dive); -extern void append_dive(struct dive *dive); extern void insert_dive(struct dive_table *table, struct dive *d); extern void get_dive_gas(const struct dive *dive, int *o2_p, int *he_p, int *o2low_p); extern int get_divenr(const struct dive *dive);