| 30 | #include "StaticDialog.h" |
| 31 | |
| 32 | StaticDialog::~StaticDialog() |
| 33 | { |
| 34 | if (isCreated()) |
| 35 | { |
| 36 | // Prevent run_dlgProc from doing anything, since its virtual |
| 37 | ::SetWindowLongPtr(_hSelf, GWLP_USERDATA, NULL); |
| 38 | destroy(); |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | void StaticDialog::destroy() |
| 43 | { |
nothing calls this directly
no outgoing calls
no test coverage detected