| 519 | |
| 520 | |
| 521 | void CCreatePropertyPage::OnClickedReverse() |
| 522 | { |
| 523 | // TODO: Add your control notification handler code here |
| 524 | |
| 525 | CComboBox *pEncBox = (CComboBox*)GetDlgItem(IDC_DATA_ENCRYPTION); |
| 526 | |
| 527 | if (!pEncBox) |
| 528 | return; |
| 529 | |
| 530 | BOOL bIsChecked = IsDlgButtonChecked(IDC_REVERSE); |
| 531 | |
| 532 | pEncBox->SelectString(-1, data_encryption_types[bIsChecked ? AES256_SIV_INDEX : AES256_GCM_INDEX]); |
| 533 | |
| 534 | } |
| 535 | |
| 536 | |
| 537 | void CCreatePropertyPage::OnClickedSelectConfigPath() |
nothing calls this directly
no outgoing calls
no test coverage detected