| 320 | } |
| 321 | |
| 322 | void INISettingsInterface::SetStringList(const char* section, const char* key, const std::vector<std::string>& items) |
| 323 | { |
| 324 | m_dirty = true; |
| 325 | m_ini.Delete(section, key); |
| 326 | |
| 327 | for (const std::string& sv : items) |
| 328 | m_ini.SetValue(section, key, sv.c_str(), nullptr, false); |
| 329 | } |
| 330 | |
| 331 | bool INISettingsInterface::RemoveFromStringList(const char* section, const char* key, const char* item) |
| 332 | { |
no test coverage detected