diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-05-31 21:24:27 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-05-31 21:25:03 -0700 |
commit | ed26dfdd6bd095f117d4f43a638688d19bb9be5b (patch) | |
tree | b21aa2efbb64add781488657b011ea3093386b57 /dive.h | |
parent | 6333f3aa35d12d7e9f1c02389df0f6129adb93b3 (diff) | |
download | subsurface-ed26dfdd6bd095f117d4f43a638688d19bb9be5b.tar.gz |
Planner: don't include the disclaimer in the dive plan detail widget
We want the disclaimer in the final dive that can be printed, but it's
distracting when shown while planning the dive.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'dive.h')
-rw-r--r-- | dive.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -654,7 +654,7 @@ struct divedatapoint *create_dp(int time_incr, int depth, int o2, int he, int po #if DEBUG_PLAN void dump_plan(struct diveplan *diveplan); #endif -void plan(struct diveplan *diveplan, char **cached_datap, struct dive **divep, struct dive *master_dive, bool add_deco); +void plan(struct diveplan *diveplan, char **cached_datap, struct dive **divep, struct dive *master_dive, bool add_deco, bool show_disclaimer); void delete_single_dive(int idx); struct event *get_next_event(struct event *event, char *name); |