YOU MUST call this after you are done with the progress indicator. This frees up some allocated memory
| 137 | |
| 138 | // YOU MUST call this after you are done with the progress indicator. This frees up some allocated memory |
| 139 | void CProgress::DestroyProgress() { |
| 140 | ASSERT(m_StatusDlg != NULL); |
| 141 | m_StatusDlg->DestroyWindow(); |
| 142 | if (m_StatusDlg) |
| 143 | delete m_StatusDlg; |
| 144 | } |
| 145 | |
| 146 | // By default the progress indicator says "Please wait...", here you can change that text...make sure you call |
| 147 | // this after InitProgress() |
nothing calls this directly
no test coverage detected