MCPcopy Create free account
hub / github.com/CobaltFusion/DebugViewPP / Pause

Method Pause

DebugView++/MainFrame.cpp:1109–1123  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1107}
1108
1109void CMainFrame::Pause()
1110{
1111 SetTitle(L"Paused");
1112 m_logSources.AddMessage("<paused>");
1113 if (m_pLocalReader)
1114 {
1115 m_logSources.Remove(m_pLocalReader);
1116 m_pLocalReader = nullptr;
1117 }
1118 if (m_pGlobalReader)
1119 {
1120 m_logSources.Remove(m_pGlobalReader);
1121 m_pGlobalReader = nullptr;
1122 }
1123}
1124
1125void CMainFrame::Resume()
1126{

Callers

nothing calls this directly

Calls 3

SetTitleFunction · 0.85
AddMessageMethod · 0.45
RemoveMethod · 0.45

Tested by

no test coverage detected