| 1933 | } |
| 1934 | |
| 1935 | void CFavoriteCommunityFilterList::Remove(const char *pCommunityId) |
| 1936 | { |
| 1937 | auto FoundCommunity = std::find(m_vEntries.begin(), m_vEntries.end(), CCommunityId(pCommunityId)); |
| 1938 | if(FoundCommunity != m_vEntries.end()) |
| 1939 | { |
| 1940 | m_vEntries.erase(FoundCommunity); |
| 1941 | } |
| 1942 | } |
| 1943 | |
| 1944 | void CFavoriteCommunityFilterList::Clear() |
| 1945 | { |
no test coverage detected