Index: sources/drydemo/StateControllerRinseback.cpp =================================================================== diff -u -r0deaf8f3e192a0ecde953ab65efc1ded1c06269b -re8edefcae8e47854198b06c1a65e4e45da5f3afc --- sources/drydemo/StateControllerRinseback.cpp (.../StateControllerRinseback.cpp) (revision 0deaf8f3e192a0ecde953ab65efc1ded1c06269b) +++ sources/drydemo/StateControllerRinseback.cpp (.../StateControllerRinseback.cpp) (revision e8edefcae8e47854198b06c1a65e4e45da5f3afc) @@ -167,7 +167,6 @@ quint32 rinsebackTimeoutS = RINSEBACK_BACK_MAX_TIME_MS / MILLISECONDS_PER_SECOND; quint32 rinsebackTimerCounterMS = _treatmentStatus.rinsebackTimerCounter * QOBJECT_TIMER_TIMEOUT_MS; quint32 countdownS = (rinsebackTimerCounterMS <= RINSEBACK_BACK_MAX_TIME_MS ? RINSEBACK_BACK_MAX_TIME_MS - rinsebackTimerCounterMS : 0) / MILLISECONDS_PER_SECOND; - bool isRecircAllowed = true; if (_treatmentStatus.isRinsebackComplete || (_treatmentStatus.rinsebackTimerCounter == 0)) { countdownS = 0; @@ -183,7 +182,7 @@ msg.append(rinsebackTimeoutS); msg.append(countdownS); msg.append(static_cast(_treatmentStatus.isRinsebackComplete)); - msg.append(static_cast(isRecircAllowed)); // Is recirculation allowed? TODO check this + msg.append(static_cast(_treatmentStatus.isRecircAllowed)); _isBroadcastListReady = false; _broadcastMessages.append(msg); _isBroadcastListReady = true;