From 35b8a4f404de3297cb8d126654e0ec37245a7537 Mon Sep 17 00:00:00 2001 From: Berthold Stoeger Date: Sun, 23 Sep 2018 12:53:35 +0200 Subject: Core: split process_dives() in post-import and post-load versions process_dives() is used to post-process the dive table after loading or importing. The first parameter states whether this was after load or import. Especially in the light of undo, load and import are fundamentally different things. Notably, that latter should be undo-able, whereas the former is not. Therefore, as a first step to make import undo-able, split the function in two versions and remove the first parameter. It turns out the the load-version is very light. It only sets the DC nicknames and sorts the dive-table. There seems to be no reason to merge dives. Signed-off-by: Berthold Stoeger --- core/divelist.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'core/divelist.h') diff --git a/core/divelist.h b/core/divelist.h index 5467f10ae..937909d2b 100644 --- a/core/divelist.h +++ b/core/divelist.h @@ -18,7 +18,8 @@ extern void remove_autogen_trips(void); extern int init_decompression(struct deco_state *ds, struct dive *dive); /* divelist core logic functions */ -extern void process_dives(bool imported, bool prefer_imported); +extern void process_loaded_dives(); +extern void process_imported_dives(bool prefer_imported); extern char *get_dive_gas_string(struct dive *dive); struct dive **grow_dive_table(struct dive_table *table); -- cgit v1.2.3-70-g09d2