Index: sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentDuration.qml =================================================================== diff -u -rd5e9940fa96373f6cc118dfa9761d95f361689a5 -r914308e6f87b8074bff379371379d238e7781ed3 --- sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentDuration.qml (.../TreatmentAdjustmentDuration.qml) (revision d5e9940fa96373f6cc118dfa9761d95f361689a5) +++ sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentDuration.qml (.../TreatmentAdjustmentDuration.qml) (revision 914308e6f87b8074bff379371379d238e7781ed3) @@ -62,12 +62,13 @@ StackView.onActivating : { _root.titleText = qsTr("Edit Treatment Duration") _root.notificationText = "" + reset() } - onContinueClicked : function(vDuration) { - // send duration to TD and wait. + onContinueClicked : function(vNewTreatmentDuration) { + // send new duration to TD and wait // if accepted moves to confirm screen, otherwise show error in notification - // vTreatmentAdjustmentDurationEdit.doAdjustment(vDuration) + vTreatmentAdjustmentDurationEdit.doAdjustment(vNewTreatmentDuration) } }