* @brief Sets the user script source for ScriptDriven mode. */
| 1690 | * @brief Sets the user script source for ScriptDriven mode. |
| 1691 | */ |
| 1692 | void MQTT::Publisher::setScriptCode(const QString& code) |
| 1693 | { |
| 1694 | if (m_scriptCode == code) |
| 1695 | return; |
| 1696 | |
| 1697 | m_scriptCode = code; |
| 1698 | markConfigChanged(); |
| 1699 | } |
| 1700 | |
| 1701 | /** |
| 1702 | * @brief Sets the per-script override topic (empty == fall back to topicBase). |
no outgoing calls
no test coverage detected