| 618 | } |
| 619 | |
| 620 | LRESULT OnChar(UINT /*uMsg*/, WPARAM wParam, LPARAM /*lParam*/, BOOL& bHandled) |
| 621 | { |
| 622 | switch( wParam ) { |
| 623 | case _T(' '): |
| 624 | // Don't want to hear nasty Windows beep sound... |
| 625 | return 0; |
| 626 | default: |
| 627 | bHandled = FALSE; |
| 628 | return 0; |
| 629 | } |
| 630 | } |
| 631 | |
| 632 | LRESULT OnNavigate(UINT /*uMsg*/, WPARAM wParam, LPARAM /*lParam*/, BOOL& /*bHandled*/) |
| 633 | { |
nothing calls this directly
no outgoing calls
no test coverage detected