| 536 | } |
| 537 | |
| 538 | CFavoriteModel::tree* CFavoriteModel::tree::ChildAt(int index) const |
| 539 | { |
| 540 | if (index < 0 || index >= children.size()) { |
| 541 | return nullptr; |
| 542 | } |
| 543 | return children[index]; |
| 544 | } |
| 545 | |
| 546 | int CFavoriteModel::tree::GetInserIndex(tree *child) |
| 547 | { |
nothing calls this directly
no outgoing calls
no test coverage detected