| 272 | class ProgramSorter { |
| 273 | public: |
| 274 | ProgramSorter(int column, Qt::SortOrder order) |
| 275 | : mSortColumn(column), |
| 276 | mSortOrder(order) |
| 277 | { |
| 278 | } |
| 279 | |
| 280 | bool operator()(const ProfileTableRow &p1, const ProfileTableRow &p2) const |
| 281 | { |
nothing calls this directly
no outgoing calls
no test coverage detected