| 3653 | DumpLevelGoals(dlg_open.GetPathName().GetBuffer(0), filename); |
| 3654 | } |
| 3655 | |
| 3656 | void CMainFrame::OnViewViewprop() { |
| 3657 | if (theApp.m_ViewerPropDlgPtr == NULL) { |
| 3658 | theApp.m_ViewerPropDlgPtr = new CViewerPropDlg; |
| 3659 | theApp.m_ViewerPropDlgPtr->Create(IDD_VIEWER_DIALOG, this); |
| 3660 | theApp.m_ViewerPropDlgPtr->ShowWindow(SW_SHOW); |
| 3661 | } else { |
| 3662 | theApp.m_ViewerPropDlgPtr->DestroyWindow(); |
| 3663 | } |
| 3664 | } |
| 3665 | |
| 3666 | void CMainFrame::OnUpdateViewViewprop(CCmdUI *pCmdUI) { |
nothing calls this directly
no test coverage detected