| 429 | } |
| 430 | |
| 431 | void OptionEntryBoolean::LoadFromIni(string_view category) |
| 432 | { |
| 433 | value = GetIniBool(category.data(), key.data(), defaultValue); |
| 434 | } |
| 435 | void OptionEntryBoolean::SaveToIni(string_view category) const |
| 436 | { |
| 437 | SetIniValue(category.data(), key.data(), value); |
no test coverage detected