| 187 | } |
| 188 | |
| 189 | bool IconTextPlugin::hasTopicChanged(const String& topic) |
| 190 | { |
| 191 | MutexGuard<MutexRecursive> guard(m_mutex); |
| 192 | bool hasTopicChanged = m_hasTopicChanged; |
| 193 | |
| 194 | /* Only a single topic, therefore its not necessary to check. */ |
| 195 | PLUGIN_NOT_USED(topic); |
| 196 | |
| 197 | m_hasTopicChanged = false; |
| 198 | |
| 199 | return hasTopicChanged; |
| 200 | } |
| 201 | |
| 202 | void IconTextPlugin::start(uint16_t width, uint16_t height) |
| 203 | { |
nothing calls this directly
no outgoing calls
no test coverage detected