| 646 | } |
| 647 | |
| 648 | void CExt2MgrDlg::OnDestroy() |
| 649 | { |
| 650 | KillTimer(ID_INDICATOR_TIME); |
| 651 | |
| 652 | Ext2CleanupDisks(); |
| 653 | Ext2CleanupCdroms(); |
| 654 | Ext2CleanupVolumes(); |
| 655 | Ext2CleanupDrvLetters(); |
| 656 | |
| 657 | OnPerfStop(); |
| 658 | |
| 659 | if (m_hUsbNotify) { |
| 660 | UnregisterDeviceNotification(m_hUsbNotify); |
| 661 | m_hUsbNotify = NULL; |
| 662 | } |
| 663 | |
| 664 | if (m_hAccel) { |
| 665 | DestroyAcceleratorTable(m_hAccel); |
| 666 | m_hAccel = NULL; |
| 667 | } |
| 668 | |
| 669 | CDialog::OnDestroy(); |
| 670 | } |
| 671 | |
| 672 | // If you add a minimize button to your dialog, you will need the code below |
| 673 | // to draw the icon. For MFC applications using the document/view model, |
nothing calls this directly
no test coverage detected