| 1689 | } |
| 1690 | |
| 1691 | void |
| 1692 | Node::computeHash() |
| 1693 | { |
| 1694 | if ( QThread::currentThread() != qApp->thread() ) { |
| 1695 | Q_EMIT mustComputeHashOnMainThread(); |
| 1696 | |
| 1697 | return; |
| 1698 | } |
| 1699 | std::list<Node*> marked; |
| 1700 | computeHashRecursive(marked); |
| 1701 | } // computeHash |
| 1702 | |
| 1703 | void |
| 1704 | Node::setValuesFromSerialization(const CreateNodeArgs& args) |
no outgoing calls