Index: sources/gui/qml/components/ConfirmTreatmentTable.qml =================================================================== diff -u -r321e667cd58da515845f2173d5e1a59082823455 -r9cef897469b01673d2ac04fc73510fc96382caf3 --- sources/gui/qml/components/ConfirmTreatmentTable.qml (.../ConfirmTreatmentTable.qml) (revision 321e667cd58da515845f2173d5e1a59082823455) +++ sources/gui/qml/components/ConfirmTreatmentTable.qml (.../ConfirmTreatmentTable.qml) (revision 9cef897469b01673d2ac04fc73510fc96382caf3) @@ -107,10 +107,10 @@ operatingValues: vTreatmentCreate.doGetOperatingParameterValues() onVisibleChanged: { if (visible) { - prescriptionKeys = vTreatmentCreate.getPrescriptionParameterNames() - prescriptionValues = vTreatmentCreate.getPrescriptionParameterValues() - operatingKeys = vTreatmentCreate.getOperatingParameterNames() - operatingValues = vTreatmentCreate.getOperatingParameterValues() + prescriptionKeys = vTreatmentCreate.doGetPrescriptionParameterNames() + prescriptionValues = vTreatmentCreate.doGetPrescriptionParameterValues() + operatingKeys = vTreatmentCreate.doGetOperatingParameterNames() + operatingValues = vTreatmentCreate.doGetOperatingParameterValues() } } }