| 446 | } |
| 447 | |
| 448 | void MainFrame::TrackSettingChange(const std::wstring& name) |
| 449 | { |
| 450 | if (name.empty()) |
| 451 | { |
| 452 | return; |
| 453 | } |
| 454 | if (m_dirtyKeys.insert(name).second) |
| 455 | { |
| 456 | BackupCurrentSetting(name); |
| 457 | } |
| 458 | } |
| 459 | |
| 460 | void MainFrame::SaveSettings() |
| 461 | { |
nothing calls this directly
no outgoing calls
no test coverage detected