| 334 | } |
| 335 | |
| 336 | void NodeTree::closeNode(NodeID nid) |
| 337 | { |
| 338 | setHasOpenChildren(nid, false); |
| 339 | auto pid = getParent(nid); |
| 340 | if (pid != NodeID::NoNode) |
| 341 | { |
| 342 | onChildClosed(pid); |
| 343 | } |
| 344 | } |
| 345 | |
| 346 | void NodeTree::setLabel(NodeID nid, const Label &label) |
| 347 | { |
nothing calls this directly
no outgoing calls
no test coverage detected