| 329 | } |
| 330 | |
| 331 | bool INISettingsInterface::RemoveFromStringList(const char* section, const char* key, const char* item) |
| 332 | { |
| 333 | m_dirty = true; |
| 334 | return m_ini.DeleteValue(section, key, item, true); |
| 335 | } |
| 336 | |
| 337 | bool INISettingsInterface::AddToStringList(const char* section, const char* key, const char* item) |
| 338 | { |
no test coverage detected