| 133 | } |
| 134 | |
| 135 | bool CWFPFilterTable::CompareItems(const WFPFilterInfo& s1, const WFPFilterInfo& s2, int col, bool asc) { |
| 136 | switch (col) |
| 137 | { |
| 138 | case 0: |
| 139 | return SortHelper::SortNumbers(s1.FilterId, s2.FilterId, asc); |
| 140 | break; |
| 141 | default: |
| 142 | break; |
| 143 | } |
| 144 | return false; |
| 145 | } |
| 146 | |
| 147 | void CWFPFilterTable::Refresh() { |
| 148 | m_Table.data.info.clear(); |
nothing calls this directly
no test coverage detected