| 862 | } |
| 863 | |
| 864 | void SMCListView::OnMouseLeave() |
| 865 | { |
| 866 | __super::OnMouseLeave(); |
| 867 | if(m_pHoverItem) |
| 868 | { |
| 869 | m_pHoverItem->DoFrameEvent(WM_MOUSELEAVE,0,0); |
| 870 | m_pHoverItem = NULL; |
| 871 | } |
| 872 | |
| 873 | } |
| 874 | |
| 875 | void SMCListView::OnKeyDown( TCHAR nChar, UINT nRepCnt, UINT nFlags ) |
| 876 | { |
nothing calls this directly
no test coverage detected