| 688 | } |
| 689 | |
| 690 | LRESULT OnFocus(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& bHandled) |
| 691 | { |
| 692 | // Avoid focus-rectangle problem in ownerdrawn ListView |
| 693 | _InvalidateItem(m_iSelectedRow, m_iSelectedCol); |
| 694 | bHandled = FALSE; |
| 695 | return 0; |
| 696 | } |
| 697 | |
| 698 | LRESULT OnScroll(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& bHandled) |
| 699 | { |
nothing calls this directly
no test coverage detected