| 53 | } |
| 54 | |
| 55 | void SortModel::sort(int column, Qt::SortOrder order) |
| 56 | { |
| 57 | _currSortNdx = column; |
| 58 | _currSortOrder = order; |
| 59 | |
| 60 | cds_debug("Sort index: {}, Refreshed sort index: {}, sort ortder: {}", _currSortNdx, updatedSortNdx(), _currSortOrder); |
| 61 | |
| 62 | QSortFilterProxyModel::sort(updatedSortNdx(), _currSortOrder); |
| 63 | } |
no outgoing calls
no test coverage detected