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() } } } Index: sources/view/VPriming.h =================================================================== diff -u -r321e667cd58da515845f2173d5e1a59082823455 -r9cef897469b01673d2ac04fc73510fc96382caf3 --- sources/view/VPriming.h (.../VPriming.h) (revision 321e667cd58da515845f2173d5e1a59082823455) +++ sources/view/VPriming.h (.../VPriming.h) (revision 9cef897469b01673d2ac04fc73510fc96382caf3) @@ -47,17 +47,16 @@ PRIMING_COMPLETE }; - QString continueBtnText = tr("CONTINUE TO TREATMENT"); + QString _continueBtnText = tr("CONTINUE TO TREATMENT"); - Q_PROPERTY(QString continueBtnText READ getContinueBtnText NOTIFY continueBtnTextChanged) + Q_PROPERTY(QString continueBtnText READ continueBtnText NOTIFY continueBtnTextChanged) signals: void continueBtnTextChanged(); private slots: void onActionReceive(const PrimingData &data); public slots: - QString getContinueBtnText() { return continueBtnText; } - quint32 getStateCheckingInstallation() { return static_cast(CHECKING_INSTALLATION); } + QString continueBtnText() { return _continueBtnText; } }; }