| 1042 | } |
| 1043 | |
| 1044 | void CMainFrame::OnFileSaveConfiguration(UINT /*uNotifyCode*/, int /*nID*/, CWindow /*wndCtl*/) |
| 1045 | { |
| 1046 | CFileDialog dlg(false, L".dbconf", m_configFileName.c_str(), OFN_OVERWRITEPROMPT, |
| 1047 | L"DebugView++ Configuration Files (*.dbconf)\0*.dbconf\0\0"); |
| 1048 | dlg.m_ofn.nFilterIndex = 0; |
| 1049 | dlg.m_ofn.lpstrTitle = L"Save View Configuration"; |
| 1050 | if (dlg.DoModal() == IDOK) |
| 1051 | SaveConfiguration(dlg.m_szFileName); |
| 1052 | } |
| 1053 | |
| 1054 | void CMainFrame::ClearLog() |
| 1055 | { |