| 153 | } |
| 154 | |
| 155 | bool CKernelNotifyTable::CompareItems(const CallbackInfo& s1, const CallbackInfo& s2, int col, bool asc) { |
| 156 | switch (col) |
| 157 | { |
| 158 | case 2: |
| 159 | return SortHelper::SortStrings(s1.Company, s2.Company, asc); |
| 160 | default: |
| 161 | break; |
| 162 | } |
| 163 | return false; |
| 164 | } |
| 165 | |
| 166 | void CKernelNotifyTable::Refresh() { |
| 167 | #ifdef _WIN64 |
nothing calls this directly
no outgoing calls
no test coverage detected