| 128 | } |
| 129 | |
| 130 | void StructTreeNode::appendChild(StructTreeNode* node) |
| 131 | { |
| 132 | m_children.append(node); |
| 133 | node->m_parent = this; |
| 134 | } |
| 135 | |
| 136 | void StructTreeNode::insertChild(const int row, StructTreeNode* node) |
| 137 | { |
no outgoing calls
no test coverage detected