| 1309 | BOOL CMainFrame::OnCommand(WPARAM wParam, LPARAM lParam) { return CFrameWnd::OnCommand(wParam, lParam); } |
| 1310 | |
| 1311 | void CMainFrame::OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags) { |
| 1312 | if (nChar == VK_NUMPAD5) { |
| 1313 | SlewStop(Viewer_object); |
| 1314 | } |
| 1315 | |
| 1316 | CFrameWnd::OnKeyDown(nChar, nRepCnt, nFlags); |
| 1317 | } |
| 1318 | |
| 1319 | BOOL CMainFrame::OnNotify(WPARAM wParam, LPARAM lParam, LRESULT *pResult) { |
| 1320 | // Perform notification requests on the keypad tab dialog bar and other |
nothing calls this directly
no test coverage detected