! *\brief called when will message's retain flag is changed in the will settings widget * sets the retain flag for the will message in in m_mqttClient * * \param state the state of the will retain chechbox */
| 563 | * \param state the state of the will retain chechbox |
| 564 | */ |
| 565 | void LiveDataDock::willRetainChanged(bool useWillRetainMessages) { |
| 566 | if (useWillRetainMessages) |
| 567 | m_mqttClient->setWillRetain(true); |
| 568 | else |
| 569 | m_mqttClient->setWillRetain(false); |
| 570 | } |
| 571 | |
| 572 | /*! |
| 573 | *\brief called when will topic combobox's current item is changed in the will settings widget |
no test coverage detected