| 422 | } |
| 423 | |
| 424 | void |
| 425 | TextMod::set(const char *value) |
| 426 | { |
| 427 | free(this->text.data()); |
| 428 | this->text.assign(ats_strdup(value), strlen(value)); |
| 429 | } |
| 430 | |
| 431 | struct MultiTextMod : public ControlBase::Modifier { |
| 432 | std::string _s; ///< Storage for all strings. |
no test coverage detected