| 140 | } |
| 141 | |
| 142 | void StructTreeNode::removeChild(const int row) |
| 143 | { |
| 144 | m_children[row]->m_parent = nullptr; |
| 145 | m_children.remove(row); |
| 146 | } |
| 147 | |
| 148 | void StructTreeNode::removeChild(StructTreeNode* child) |
| 149 | { |
no outgoing calls
no test coverage detected