Index: sources/gui/qml/pages/treatment/TreatmentStack.qml =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -rbae9ba50ef04f2065ec54553d01a8827a71cb926 --- sources/gui/qml/pages/treatment/TreatmentStack.qml (.../TreatmentStack.qml) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/gui/qml/pages/treatment/TreatmentStack.qml (.../TreatmentStack.qml) (revision bae9ba50ef04f2065ec54553d01a8827a71cb926) @@ -118,22 +118,25 @@ } Connections { target: _treatmentAdjustmentFlow - function onConfirmClicked ( vValue ) { vTreatmentAdjustmentFlows.doAdjustment(bloodFlowRateValue, dialysateFlowRateValue) } + function onConfirmClicked ( vValue ) { vTreatmentAdjustmentFlows.doAdjustment( + _treatmentAdjustmentFlow.bloodFlowRateValue , + _treatmentAdjustmentFlow.dialysateFlowRateValue ) + } } Connections { target: _treatmentAdjustmentPressuresLimits function onConfirmClicked ( vValue ) { vTreatmentAdjustmentPressuresLimits.doAdjustment( - arterialPressureLowerBound , - arterialPressureUpperBound , - venousPressureLowerBound , - venousPressureUpperBound - ) + _treatmentAdjustmentPressuresLimits.arterialPressureLowerBound , + _treatmentAdjustmentPressuresLimits.arterialPressureUpperBound , + _treatmentAdjustmentPressuresLimits.venousPressureLowerBound , + _treatmentAdjustmentPressuresLimits.venousPressureUpperBound ) } } TreatmentAdjustmentDuration { id: _treatmentAdjustmentDuration } Connections { target: _treatmentAdjustmentDuration function onConfirmClicked ( vValue ) { vTreatmentAdjustmentDuration.doAdjustment( - _treatmentAdjustmentDuration.durationValue )} + _treatmentAdjustmentDuration.durationValue ) + } } EntryDialog { id: _vitalEntry @@ -172,10 +175,10 @@ } Connections { target: vTreatmentVitals - function onDidTrigger ( vSystolic, vDiastolic, vHeartRate ) { + function onDidTrigger ( vSystolic, vDiastolic, vHeartRate ) { if ( vTreatmentVitals.enableDialog ) { - _vitalEntry.update(vSystolic, vDiastolic, vHeartRate ) - _vitalEntry.open() + _vitalEntry.update ( vSystolic, vDiastolic, vHeartRate ) + _vitalEntry.open () } } }