| 221 | } |
| 222 | |
| 223 | void DestroyFilesDialog::SaveState() |
| 224 | { |
| 225 | m_pdfdps->SaveDialogPosition(m_hDlg); |
| 226 | |
| 227 | if (IsDlgButtonChecked(m_hDlg, IDC_DESTROYFILES_RADIO_ONEPASS) == BST_CHECKED) |
| 228 | { |
| 229 | m_pdfdps->m_uOverwriteMethod = NFileOperations::OVERWRITE_ONEPASS; |
| 230 | } |
| 231 | else |
| 232 | { |
| 233 | m_pdfdps->m_uOverwriteMethod = NFileOperations::OVERWRITE_THREEPASS; |
| 234 | } |
| 235 | |
| 236 | m_pdfdps->m_bStateSaved = TRUE; |
| 237 | } |
| 238 | |
| 239 | void DestroyFilesDialog::OnOk() |
| 240 | { |
nothing calls this directly
no test coverage detected