| 22 | bool canRaiseEvent = true; |
| 23 | |
| 24 | void setTextSilent(const std::string& text) { |
| 25 | canRaiseEvent = false; |
| 26 | setText(text); |
| 27 | script::setStorage(text, id(), m_fileName); |
| 28 | canRaiseEvent = true; |
| 29 | } |
| 30 | |
| 31 | void onChange() override { |
| 32 | script::setStorage(text(), id(), m_fileName); |
no test coverage detected