| 62 | } |
| 63 | |
| 64 | void CTreeItem::SortChildren(bool reversed) |
| 65 | { |
| 66 | if (reversed) |
| 67 | { |
| 68 | QSort(children.Data(), children.Size(), CompChildrenRev); |
| 69 | } |
| 70 | else |
| 71 | { |
| 72 | QSort(children.Data(), children.Size(), CompChildren); |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | void CTreeItem::ExpandTree(bool expand) |
| 77 | { |
no test coverage detected