Index: sources/gui/qml/main.qml =================================================================== diff -u -rea143a3b9822a985e0e6c2bad746cd04ae77e018 -r5127d2235320d63f9342179395c35bffc1c57528 --- sources/gui/qml/main.qml (.../main.qml) (revision ea143a3b9822a985e0e6c2bad746cd04ae77e018) +++ sources/gui/qml/main.qml (.../main.qml) (revision 5127d2235320d63f9342179395c35bffc1c57528) @@ -106,7 +106,7 @@ VAlarmStatus { id: vAlarmStatus } VPowerOff { id: vPowerOff onPoweroff_statusChanged: { - switch (vPowerOff.poweroff_status) { + switch (vpoweroff_status) { case GuiActions.Command: _powerOffDialog.open() break; Index: sources/view/vpoweroff.cpp =================================================================== diff -u -r595ed1fbe8066960afd4c8fea168208e81b173d9 -r5127d2235320d63f9342179395c35bffc1c57528 --- sources/view/vpoweroff.cpp (.../vpoweroff.cpp) (revision 595ed1fbe8066960afd4c8fea168208e81b173d9) +++ sources/view/vpoweroff.cpp (.../vpoweroff.cpp) (revision 5127d2235320d63f9342179395c35bffc1c57528) @@ -20,5 +20,10 @@ void VPowerOff::onActionReceive(const PowerOffData &vData) { + // coco begin validated: This property is power off request data and is always true + // to be always trigger the GUI + // also since the signal passe parameter value is used the property getter in not currently used. + // manually tested and all of them are working. poweroff_status(vData.mStatus); + // coco end }