| 108 | } |
| 109 | |
| 110 | void MemWatchTreeNode::removeChild(const int row) |
| 111 | { |
| 112 | m_children[row]->m_parent = nullptr; |
| 113 | m_children.remove(row); |
| 114 | } |
| 115 | |
| 116 | void MemWatchTreeNode::removeChild(MemWatchTreeNode* const child) |
| 117 | { |
nothing calls this directly
no outgoing calls
no test coverage detected