| 107 | } |
| 108 | |
| 109 | bool SettingDataFloat::Save(QJsonObject& json_setting) const { |
| 110 | json_setting.insert("value", this->value); |
| 111 | json_setting.insert("expanded", this->expanded); |
| 112 | return true; |
| 113 | } |
| 114 | |
| 115 | std::string SettingDataFloat::Export(ExportMode export_mode) const { |
| 116 | const std::string float_format = this->meta->GetFloatFormat(); |
nothing calls this directly
no outgoing calls
no test coverage detected