| 966 | } |
| 967 | |
| 968 | void |
| 969 | Node::computeHash() |
| 970 | { |
| 971 | if ( QThread::currentThread() != qApp->thread() ) { |
| 972 | Q_EMIT mustComputeHashOnMainThread(); |
| 973 | |
| 974 | return; |
| 975 | } |
| 976 | std::list<Node*> marked; |
| 977 | computeHashRecursive(marked); |
| 978 | } // computeHash |
| 979 | |
| 980 | |
| 981 | void |
no outgoing calls