summaryrefslogtreecommitdiffstats
path: root/qt-models/diveplannermodel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qt-models/diveplannermodel.cpp')
-rw-r--r--qt-models/diveplannermodel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qt-models/diveplannermodel.cpp b/qt-models/diveplannermodel.cpp
index 5d0375e69..6bb560098 100644
--- a/qt-models/diveplannermodel.cpp
+++ b/qt-models/diveplannermodel.cpp
@@ -985,7 +985,7 @@ void DivePlannerPointsModel::createTemporaryPlan()
computeVariations(plan_copy, &plan_deco_state);
#endif
final_deco_state = plan_deco_state;
- emit calculatedPlanNotes();
+ emit calculatedPlanNotes(QString(displayed_dive.notes));
}
// throw away the cache
free(cache);
@@ -1170,7 +1170,7 @@ void DivePlannerPointsModel::computeVariationsDone(QString variations)
QString notes = QString(displayed_dive.notes);
free(displayed_dive.notes);
displayed_dive.notes = copy_qstring(notes.replace("VARIATIONS", variations));
- emit calculatedPlanNotes();
+ emit calculatedPlanNotes(QString(displayed_dive.notes));
}
void DivePlannerPointsModel::createPlan(bool replanCopy)