| 937 | } |
| 938 | |
| 939 | void CMainFrame::Run(const std::wstring& pathName) |
| 940 | { |
| 941 | if (!pathName.empty()) |
| 942 | m_runDlg.SetPathName(pathName); |
| 943 | |
| 944 | if (m_runDlg.DoModal() == IDOK) |
| 945 | { |
| 946 | m_logSources.AddProcessReader(m_runDlg.GetPathName(), m_runDlg.GetArguments()); |
| 947 | } |
| 948 | } |
| 949 | |
| 950 | void CMainFrame::OnFileRun(UINT /*uNotifyCode*/, int /*nID*/, CWindow /*wndCtl*/) |
| 951 | { |
nothing calls this directly
no test coverage detected