aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/divelist.c4
-rw-r--r--core/divelist.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/core/divelist.c b/core/divelist.c
index 0ae33153e..7712968ff 100644
--- a/core/divelist.c
+++ b/core/divelist.c
@@ -47,7 +47,7 @@
#include "qthelperfromc.h"
#include "git-access.h"
-static short dive_list_changed = false;
+static bool dive_list_changed = false;
short autogroup = false;
@@ -1201,7 +1201,7 @@ void combine_trips(struct dive_trip *trip_a, struct dive_trip *trip_b)
add_dive_to_trip(trip_b->dives, trip_a);
}
-void mark_divelist_changed(int changed)
+void mark_divelist_changed(bool changed)
{
dive_list_changed = changed;
updateWindowTitle();
diff --git a/core/divelist.h b/core/divelist.h
index ed648793f..538f4215b 100644
--- a/core/divelist.h
+++ b/core/divelist.h
@@ -12,7 +12,7 @@ extern "C" {
struct dive;
extern void update_cylinder_related_info(struct dive *);
-extern void mark_divelist_changed(int);
+extern void mark_divelist_changed(bool);
extern int unsaved_changes(void);
extern void remove_autogen_trips(void);
extern int init_decompression(struct deco_state *ds, struct dive *dive);