! *\brief called when the update interval for will message is changed in the will settings widget * sets the will update interval for the m_mqttClient, then starts the will timer for each one * * \param interval the new will update interval */
| 637 | * \param interval the new will update interval |
| 638 | */ |
| 639 | void LiveDataDock::willUpdateIntervalChanged(int interval) { |
| 640 | m_mqttClient->setWillTimeInterval(interval); |
| 641 | m_mqttClient->startWillTimer(); |
| 642 | } |
| 643 | |
| 644 | /*! |
| 645 | *\brief called when the will statistics are changed in the will settings widget |
no test coverage detected