| 277 | } |
| 278 | |
| 279 | void INISettingsInterface::ClearSection(const char* section) |
| 280 | { |
| 281 | m_dirty = true; |
| 282 | m_ini.Delete(section, nullptr); |
| 283 | m_ini.SetValue(section, nullptr, nullptr); |
| 284 | } |
| 285 | |
| 286 | void INISettingsInterface::RemoveSection(const char* section) |
| 287 | { |
no test coverage detected