| 1147 | } |
| 1148 | |
| 1149 | void CargoDataEntry::Resort(CargoSortType type, SortOrder order) |
| 1150 | { |
| 1151 | auto new_children = std::make_unique<CargoDataSet>(CargoSorter(type, order)); |
| 1152 | new_children->merge(*this->children); |
| 1153 | this->children = std::move(new_children); |
| 1154 | } |
| 1155 | |
| 1156 | CargoDataEntry *CargoDataEntry::Retrieve(CargoDataSet::iterator i) const |
| 1157 | { |