diveplannermodel: replace in_planner() by isPlanner()

The in_planner() function is problematic, because it depends
on the application state that is only available on desktop.
If we ever want to port the planner to mobile, we have to get
rid of it. Luckily, the DivePlannerModel already has an
appropriate flag that can be used instead.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2020-10-27 23:00:16 +01:00 committed by Robert C. Helling
parent f4ef9565a7
commit e47b812fd0

View file

@ -1119,7 +1119,7 @@ void DivePlannerPointsModel::computeVariations(struct diveplan *original_plan, c
struct divedatapoint *last_segment;
struct deco_state ds = *previous_ds;
if (in_planner() && prefs.display_variations && decoMode() != RECREATIONAL) {
if (isPlanner() && prefs.display_variations && decoMode() != RECREATIONAL) {
int my_instance = ++instanceCounter;
cache_deco_state(&ds, &save);