| 458 | } |
| 459 | |
| 460 | void MainFrame::SaveSettings() |
| 461 | { |
| 462 | if (!m_config) |
| 463 | { |
| 464 | return; |
| 465 | } |
| 466 | for (const auto& key : m_dirtyKeys) |
| 467 | { |
| 468 | BackupCurrentSetting(key); |
| 469 | } |
| 470 | m_dirtyKeys.clear(); |
| 471 | SetDirty(false); |
| 472 | UpdateOptionStatusIcons(); |
| 473 | UpdatePathWarningIcons(); |
| 474 | } |
| 475 | |
| 476 | void MainFrame::RevertSettings() |
| 477 | { |
nothing calls this directly
no outgoing calls
no test coverage detected