| 102 | } |
| 103 | |
| 104 | void MemWatchTreeNode::insertChild(const int row, MemWatchTreeNode* node) |
| 105 | { |
| 106 | m_children.insert(row, node); |
| 107 | node->m_parent = this; |
| 108 | } |
| 109 | |
| 110 | void MemWatchTreeNode::removeChild(const int row) |
| 111 | { |
nothing calls this directly
no outgoing calls
no test coverage detected