| 112 | } |
| 113 | |
| 114 | CMainFrame::CMainFrame() : |
| 115 | m_filterNr(1), |
| 116 | m_findDlg(*this), |
| 117 | m_linkViews(false), |
| 118 | m_hide(false), |
| 119 | m_lineBuffer(7000), |
| 120 | m_tryGlobal(IsWindowsVistaOrGreater() && HasGlobalDBWinReaderRights()), |
| 121 | m_logFileName(L"DebugView++.dblog"), |
| 122 | m_txtFileName(L"MessagesInTheCurrentView.dblog"), |
| 123 | m_configFileName(L"DebugView++.dbconf"), |
| 124 | m_initialPrivateBytes(ProcessInfo::GetPrivateBytes()), |
| 125 | m_logfont(GetDefaultLogFont()), |
| 126 | m_pLocalReader(nullptr), |
| 127 | m_pGlobalReader(nullptr), |
| 128 | m_pDbgviewReader(nullptr), |
| 129 | m_GuiExecutorClient(std::make_unique<GuiExecutorClient>()), |
| 130 | m_logSources(*m_GuiExecutorClient) |
| 131 | { |
| 132 | m_notifyIconData.cbSize = 0; |
| 133 | } |
| 134 | |
| 135 | CMainFrame::~CMainFrame() |
| 136 | { |
nothing calls this directly
no test coverage detected