| 454 | } |
| 455 | |
| 456 | void Node::recursiveSort() |
| 457 | { |
| 458 | m_model->nodesLayoutAboutToBeChanged(this); |
| 459 | |
| 460 | recursiveSortInternal(); |
| 461 | |
| 462 | m_model->nodesLayoutChanged(this); |
| 463 | } |
| 464 | |
| 465 | int Node::row() |
| 466 | { |
nothing calls this directly
no test coverage detected