| 492 | } |
| 493 | |
| 494 | std::string DebugAnalysisSettingsWidget::getStringSettingValue( |
| 495 | const char* section, const char* key, const char* default_value) |
| 496 | { |
| 497 | if (m_dialog) |
| 498 | return m_dialog->getEffectiveStringValue(section, key, default_value); |
| 499 | |
| 500 | return Host::GetStringSettingValue(section, key, default_value); |
| 501 | } |
| 502 | |
| 503 | bool DebugAnalysisSettingsWidget::getBoolSettingValue( |
| 504 | const char* section, const char* key, bool default_value) |
nothing calls this directly
no test coverage detected