* @brief Sets the base topic for frame/raw publishing. */
| 1666 | * @brief Sets the base topic for frame/raw publishing. |
| 1667 | */ |
| 1668 | void MQTT::Publisher::setTopicBase(const QString& topic) |
| 1669 | { |
| 1670 | if (m_topicBase == topic) |
| 1671 | return; |
| 1672 | |
| 1673 | m_topicBase = topic; |
| 1674 | markConfigChanged(); |
| 1675 | } |
| 1676 | |
| 1677 | /** |
| 1678 | * @brief Sets the notification publishing topic. |
no outgoing calls
no test coverage detected