| 1695 | } |
| 1696 | |
| 1697 | std::vector<int> CLogView::GetBookmarks() const |
| 1698 | { |
| 1699 | std::vector<int> bookmarks; |
| 1700 | for (auto& line : m_logLines) |
| 1701 | if (line.bookmark) |
| 1702 | bookmarks.push_back(line.line); |
| 1703 | return bookmarks; |
| 1704 | } |
| 1705 | |
| 1706 | void CLogView::ResetFilters() |
| 1707 | { |
nothing calls this directly
no outgoing calls
no test coverage detected