Index: sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentFlow.qml =================================================================== diff -u -r95c671ab7037af055db551456a719ff67bf10262 -r016578b44e879b89bd42dda7763ed50e67d7e64c --- sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentFlow.qml (.../TreatmentAdjustmentFlow.qml) (revision 95c671ab7037af055db551456a719ff67bf10262) +++ sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentFlow.qml (.../TreatmentAdjustmentFlow.qml) (revision 016578b44e879b89bd42dda7763ed50e67d7e64c) @@ -49,14 +49,14 @@ dialysateFlowRateValue = vTreatmentDialysateFlow.dialysateFlow_FlowSetPoint } - Connections { target: vTreatmentAdjustmentsResponse + Connections { target: vTreatmentAdjustmentFlows onAdjustmentFlowTriggered: { - if ( vTreatmentAdjustmentsResponse.adjustment_Accepted ) { + if ( vTreatmentAdjustmentFlows.adjustment_Accepted ) { accept() } else { - _bloodFlowSlider .value = vTreatmentAdjustmentsResponse. bloodFlow_FlowSetPoint; - _dialysateFlowSlider.value = vTreatmentAdjustmentsResponse.dialysateFlow_FlowSetPoint; - notificationText = vTreatmentAdjustmentsResponse.text(); + _bloodFlowSlider .value = vTreatmentAdjustmentFlows. bloodFlow_FlowSetPoint; + _dialysateFlowSlider.value = vTreatmentAdjustmentFlows.dialysateFlow_FlowSetPoint; + notificationText = vTreatmentAdjustmentFlows.text(); } } }