| 86 | } |
| 87 | |
| 88 | bool SettingDataString::Save(QJsonObject& json_setting) const { |
| 89 | json_setting.insert("value", this->value.c_str()); |
| 90 | json_setting.insert("expanded", this->expanded); |
| 91 | |
| 92 | return true; |
| 93 | } |
| 94 | |
| 95 | std::string SettingDataString::Export(ExportMode export_mode) const { |
| 96 | const std::string actual_value = this->IsValid() ? this->value : this->meta->default_value; |
nothing calls this directly
no outgoing calls
no test coverage detected