| 238 | } |
| 239 | |
| 240 | __fi void CopyStringValue(const SettingsInterface& si, const char* section, const char* key) |
| 241 | { |
| 242 | std::string value; |
| 243 | if (si.GetStringValue(section, key, &value)) |
| 244 | SetStringValue(section, key, value.c_str()); |
| 245 | else |
| 246 | DeleteValue(section, key); |
| 247 | } |
| 248 | |
| 249 | __fi void CopyStringListValue(const SettingsInterface& si, const char* section, const char* key) |
| 250 | { |
nothing calls this directly
no test coverage detected