| 510 | } |
| 511 | |
| 512 | int DebugAnalysisSettingsWidget::getIntSettingValue( |
| 513 | const char* section, const char* key, int default_value) |
| 514 | { |
| 515 | if (m_dialog) |
| 516 | return m_dialog->getEffectiveIntValue(section, key, default_value); |
| 517 | |
| 518 | return Host::GetIntSettingValue(section, key, default_value); |
| 519 | } |
| 520 | |
| 521 | #include "moc_DebugAnalysisSettingsWidget.cpp" |
nothing calls this directly
no test coverage detected