| 271 | } |
| 272 | |
| 273 | void INISettingsInterface::DeleteValue(const char* section, const char* key) |
| 274 | { |
| 275 | m_dirty = true; |
| 276 | m_ini.Delete(section, key); |
| 277 | } |
| 278 | |
| 279 | void INISettingsInterface::ClearSection(const char* section) |
| 280 | { |
no test coverage detected