| 134 | |
| 135 | |
| 136 | void |
| 137 | NodeGraphicsObject:: |
| 138 | moveConnections() const |
| 139 | { |
| 140 | NodeState const & nodeState = _node.nodeState(); |
| 141 | |
| 142 | for(PortType portType: {PortType::In, PortType::Out}) |
| 143 | { |
| 144 | auto const & connectionEntries = |
| 145 | nodeState.getEntries(portType); |
| 146 | |
| 147 | for (auto const & connections : connectionEntries) |
| 148 | { |
| 149 | for (auto & con : connections) |
| 150 | con.second->connectionGraphicsObject().move(); |
| 151 | } |
| 152 | }; |
| 153 | } |
| 154 | |
| 155 | void NodeGraphicsObject::lock(bool locked) |
| 156 | { |
nothing calls this directly
no outgoing calls
no test coverage detected