Index: sources/gui/qml/main.qml =================================================================== diff -u -r6cf864fa54afe656a17daf797b2e2c130dfea90e -rea143a3b9822a985e0e6c2bad746cd04ae77e018 --- sources/gui/qml/main.qml (.../main.qml) (revision 6cf864fa54afe656a17daf797b2e2c130dfea90e) +++ sources/gui/qml/main.qml (.../main.qml) (revision ea143a3b9822a985e0e6c2bad746cd04ae77e018) @@ -106,7 +106,7 @@ VAlarmStatus { id: vAlarmStatus } VPowerOff { id: vPowerOff onPoweroff_statusChanged: { - switch (vpoweroff_status) { + switch (vPowerOff.poweroff_status) { case GuiActions.Command: _powerOffDialog.open() break; Index: sources/storage/filehandler.cpp =================================================================== diff -u -r31b9ae63410e7ca23f0f849e38368880e4c402b4 -rea143a3b9822a985e0e6c2bad746cd04ae77e018 --- sources/storage/filehandler.cpp (.../filehandler.cpp) (revision 31b9ae63410e7ca23f0f849e38368880e4c402b4) +++ sources/storage/filehandler.cpp (.../filehandler.cpp) (revision ea143a3b9822a985e0e6c2bad746cd04ae77e018) @@ -90,6 +90,8 @@ */ int FileHandler::copyFolder(const QString &vSource, const QString &vDestination ) { + // coco begin validated: This needs user interaction to export to USB device + // has been tested manually since currently it is the only place it has been used. QString cp = "cp"; QStringList arguments; arguments << "-r" << vSource << vDestination; @@ -101,4 +103,4 @@ return result; } - +// coco end Index: sources/view/vtreatmentadjustmentsresponse.h =================================================================== diff -u -r31b9ae63410e7ca23f0f849e38368880e4c402b4 -rea143a3b9822a985e0e6c2bad746cd04ae77e018 --- sources/view/vtreatmentadjustmentsresponse.h (.../vtreatmentadjustmentsresponse.h) (revision 31b9ae63410e7ca23f0f849e38368880e4c402b4) +++ sources/view/vtreatmentadjustmentsresponse.h (.../vtreatmentadjustmentsresponse.h) (revision ea143a3b9822a985e0e6c2bad746cd04ae77e018) @@ -30,11 +30,19 @@ Q_OBJECT PROPERTY( bool , adjustment_Accepted , 0, false) + // coco begin validated: The Reason property as quint32 is not used directly in GUI + // it will be used as QString text. + // has been manually tested that it works perfectly fine if used. PROPERTY( quint32 , adjustment_Reason , 0, false) + // coco end PROPERTY( quint32 , bloodFlow_FlowSetPoint , 0, false) PROPERTY( quint32 , dialysateFlow_FlowSetPoint , 0, false) + // coco begin validated: The property triggered supposed to be always true + // and to always trigger the change event to work as a notifier for GUI + // has been manually tested that it works perfectly fine if used. PROPERTY( bool , adjustment_Triggered , 0, true ) + // coco end VIEW_DEC_CLASS(VTreatmentAdjustmentsResponse) VIEW_DEC_SLOT_ADJUSTMENTS