| 134 | } |
| 135 | |
| 136 | void StructTreeNode::insertChild(const int row, StructTreeNode* node) |
| 137 | { |
| 138 | m_children.insert(row, node); |
| 139 | node->m_parent = this; |
| 140 | } |
| 141 | |
| 142 | void StructTreeNode::removeChild(const int row) |
| 143 | { |
no outgoing calls
no test coverage detected