| 241 | } |
| 242 | |
| 243 | void CSettingsPropertyPage::SetControlChanged(int id) |
| 244 | { |
| 245 | auto it = m_controls.find(id); |
| 246 | |
| 247 | assert(it != m_controls.end()); |
| 248 | |
| 249 | if (it == m_controls.end()) |
| 250 | return; |
| 251 | |
| 252 | it->second->Set(CryptSetting::Changed); |
| 253 | } |
| 254 | |
| 255 | |
| 256 |