| 88 | } |
| 89 | |
| 90 | int MemWatchTreeNode::getRow() const |
| 91 | { |
| 92 | if (m_parent != nullptr) |
| 93 | return static_cast<int>(m_parent->m_children.indexOf(const_cast<MemWatchTreeNode*>(this))); |
| 94 | |
| 95 | return 0; |
| 96 | } |
| 97 | |
| 98 | void MemWatchTreeNode::appendChild(MemWatchTreeNode* node) |
| 99 | { |
nothing calls this directly
no outgoing calls
no test coverage detected