| 156 | } |
| 157 | |
| 158 | bool CEtwView::OnRightClickList(HWND, int index, int col, POINT& pt) { |
| 159 | if (index >= 0) { |
| 160 | CMenu menu; |
| 161 | menu.LoadMenu(IDR_ETW_CONTEXT); |
| 162 | GetFrame()->TrackPopupMenu(menu.GetSubMenu(0), *this, &pt); |
| 163 | return true; |
| 164 | } |
| 165 | return false; |
| 166 | } |
| 167 | |
| 168 | bool CEtwView::OnDoubleClickList(HWND, int row, int col, POINT& pt) { |
| 169 | SendMessage(WM_COMMAND, ID_EVENT_PROPERTIES); |
nothing calls this directly
no test coverage detected