Clear the children nodes
| 44 | |
| 45 | /// Clear the children nodes |
| 46 | void clear() |
| 47 | { |
| 48 | qDeleteAll(m_children); |
| 49 | m_children.clear(); |
| 50 | } |
| 51 | |
| 52 | /// Tells if the node is a root node. |
| 53 | /// A node is considered a root node (in this context), when it has no parent |
no test coverage detected