X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=main.c;h=ee09b9a82e50b4ee0bceda0ef9eebdd7cadaae64;hb=bd8948386d555560477238dc09921b83f07b48b2;hp=be52dbd979c1b81558b892bad4664e45691acd21;hpb=d6c2236b8a9e20d22d78de7432f7017a18235619;p=ext%2Fsubsurface.git diff --git a/main.c b/main.c index be52dbd..ee09b9a 100644 --- a/main.c +++ b/main.c @@ -97,11 +97,16 @@ static void try_to_renumber(struct dive *last, int preexisting) } } +/* + * track whether we switched to importing dives + */ +static gboolean imported = FALSE; + /* * This doesn't really report anything at all. We just sort the * dives, the GUI does the reporting */ -void report_dives(void) +void report_dives(gboolean imported) { int i; int preexisting = dive_table.preexisting; @@ -135,10 +140,15 @@ void report_dives(void) i--; } - /* Was the previous dive table state numbered? */ - if (last && last->number) - try_to_renumber(last, preexisting); + if (imported) { + /* Was the previous dive table state numbered? */ + if (last && last->number) + try_to_renumber(last, preexisting); + /* did we have dives in the table and added more? */ + if (last && preexisting != dive_table.nr) + mark_divelist_changed(TRUE); + } dive_table.preexisting = dive_table.nr; dive_list_update_dives(); } @@ -152,6 +162,16 @@ static void parse_argument(const char *arg) case 'v': verbose++; continue; + case '-': + /* long options with -- */ + if (strcmp(arg,"--import") == 0) { + /* mark the dives so far as the base, + * everything after is imported */ + report_dives(FALSE); + imported = TRUE; + return; + } + /* fallthrough */ default: fprintf(stderr, "Bad argument '%s'\n", arg); exit(1); @@ -184,6 +204,7 @@ void renumber_dives(int nr) struct dive *dive = dive_table.dives[i]; dive->number = nr + i; } + mark_divelist_changed(TRUE); } int main(int argc, char **argv) @@ -214,7 +235,7 @@ int main(int argc, char **argv) } } - report_dives(); + report_dives(imported); run_ui(); return 0;