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

Method GetSelectedMessages

DebugView++/LogView.cpp:351–358  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

349}
350
351std::vector<std::string> CLogView::GetSelectedMessages() const
352{
353 std::vector<std::string> messages;
354 int item = -1;
355 while ((item = GetNextItem(item, LVNI_ALL | LVNI_SELECTED)) >= 0)
356 messages.push_back(GetColumnText(item, Column::Message));
357 return messages;
358}
359
360void CLogView::OnContextMenu(HWND /*hWnd*/, CPoint pt)
361{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected