* @brief Sets the notification publishing topic. */
| 1678 | * @brief Sets the notification publishing topic. |
| 1679 | */ |
| 1680 | void MQTT::Publisher::setNotificationTopic(const QString& topic) |
| 1681 | { |
| 1682 | if (m_notificationTopic == topic) |
| 1683 | return; |
| 1684 | |
| 1685 | m_notificationTopic = topic; |
| 1686 | markConfigChanged(); |
| 1687 | } |
| 1688 | |
| 1689 | /** |
| 1690 | * @brief Sets the user script source for ScriptDriven mode. |
no outgoing calls
no test coverage detected