| 135 | } |
| 136 | |
| 137 | void ValueTableItem::sort(int column, Qt::SortOrder order) { |
| 138 | globalColumn = column; |
| 139 | if(order == Qt::AscendingOrder) |
| 140 | std::sort(childItems.begin(),childItems.end(),compareTableItemAsc); |
| 141 | else |
| 142 | std::sort(childItems.begin(),childItems.end(),compareTableItemDesc); |
| 143 | } |
nothing calls this directly
no outgoing calls
no test coverage detected