| 895 | } |
| 896 | |
| 897 | void |
| 898 | TreeCanvas::inspectPath(void) { |
| 899 | QMutexLocker locker(&mutex); |
| 900 | setCurrentNode(root); |
| 901 | if (currentNode->isOnPath()) { |
| 902 | inspectCurrentNode(); |
| 903 | int nextAlt = currentNode->getPathAlternative(*na); |
| 904 | while (nextAlt >= 0) { |
| 905 | setCurrentNode(currentNode->getChild(*na,nextAlt)); |
| 906 | inspectCurrentNode(); |
| 907 | nextAlt = currentNode->getPathAlternative(*na); |
| 908 | } |
| 909 | } |
| 910 | update(); |
| 911 | } |
| 912 | |
| 913 | void |
| 914 | TreeCanvas::startCompareNodes(void) { |
nothing calls this directly
no test coverage detected