| 1203 | } |
| 1204 | |
| 1205 | void CMainFrame::OnLogHistory(UINT /*uNotifyCode*/, int /*nID*/, CWindow /*wndCtl*/) |
| 1206 | { |
| 1207 | CHistoryDlg dlg(m_logFile.GetHistorySize(), m_logFile.GetHistorySize() == 0); |
| 1208 | if (dlg.DoModal() == IDOK) |
| 1209 | m_logFile.SetHistorySize(dlg.GetHistorySize()); |
| 1210 | } |
| 1211 | |
| 1212 | std::wstring GetExecutePath() |
| 1213 | { |
nothing calls this directly
no test coverage detected