| 416 | |
| 417 | |
| 418 | BOOL CCryptPropertySheet::PreTranslateMessage(MSG* pMsg) |
| 419 | { |
| 420 | // minimize to system tray if control+T is pressed (CTRL_T is ascii 20) |
| 421 | if (pMsg->message == WM_CHAR && pMsg->wParam == 20) { |
| 422 | PostMessage(WM_SYSCOMMAND, SC_CLOSE, TRUE); |
| 423 | return TRUE; |
| 424 | } |
| 425 | |
| 426 | return CPropertySheet::PreTranslateMessage(pMsg); |
| 427 | } |
| 428 | |
| 429 | |
| 430 | void CCryptPropertySheet::OnTimer(UINT_PTR nIDEvent) |
nothing calls this directly
no outgoing calls
no test coverage detected