| 485 | } |
| 486 | |
| 487 | std::string SettingsWindow::getEffectiveStringValue(const char* section, const char* key, const char* default_value) const |
| 488 | { |
| 489 | std::string value; |
| 490 | if (!m_sif || !m_sif->GetStringValue(section, key, &value)) |
| 491 | value = Host::GetBaseStringSettingValue(section, key, default_value); |
| 492 | return value; |
| 493 | } |
| 494 | |
| 495 | std::optional<bool> SettingsWindow::getBoolValue(const char* section, const char* key, std::optional<bool> default_value) const |
| 496 | { |
no test coverage detected