| 24 | } |
| 25 | |
| 26 | BOOL CFindDlg::OnInitDialog(CWindow /*wndFocus*/, LPARAM /*lInitParam*/) |
| 27 | { |
| 28 | DlgResize_Init(); |
| 29 | |
| 30 | // register object for message filtering and idle updates |
| 31 | CMessageLoop* pLoop = _Module.GetMessageLoop(); |
| 32 | ATLASSERT(pLoop != nullptr); |
| 33 | pLoop->AddMessageFilter(this); |
| 34 | |
| 35 | return TRUE; |
| 36 | } |
| 37 | |
| 38 | void CFindDlg::OnDestroy() |
| 39 | { |
nothing calls this directly
no test coverage detected