| 847 | } |
| 848 | |
| 849 | LRESULT SMCListView::OnKeyEvent(UINT uMsg,WPARAM wParam,LPARAM lParam) |
| 850 | { |
| 851 | LRESULT lRet=0; |
| 852 | SItemPanel *pItem = GetItemPanel(m_iSelItem); |
| 853 | if(pItem) |
| 854 | { |
| 855 | lRet=pItem->DoFrameEvent(uMsg,wParam,lParam); |
| 856 | SetMsgHandled(pItem->IsMsgHandled()); |
| 857 | }else |
| 858 | { |
| 859 | SetMsgHandled(FALSE); |
| 860 | } |
| 861 | return lRet; |
| 862 | } |
| 863 | |
| 864 | void SMCListView::OnMouseLeave() |
| 865 | { |
nothing calls this directly
no test coverage detected