| 131 | } |
| 132 | |
| 133 | void CMoreSettingsPropertyPage::SetControlChanged(int id) |
| 134 | { |
| 135 | auto it = m_controls.find(id); |
| 136 | |
| 137 | assert(it != m_controls.end()); |
| 138 | |
| 139 | if (it == m_controls.end()) |
| 140 | return; |
| 141 | |
| 142 | it->second->Set(CryptSetting::Changed); |
| 143 | } |
| 144 | |
| 145 | void CMoreSettingsPropertyPage::OnClickedDefaults() |
| 146 | { |