| 245 | |
| 246 | |
| 247 | void |
| 248 | Connection:: |
| 249 | removeFromNodes() const |
| 250 | { |
| 251 | if (_inNode) |
| 252 | _inNode->nodeState().eraseConnection(PortType::In, _inPortIndex, id()); |
| 253 | |
| 254 | if (_outNode) |
| 255 | _outNode->nodeState().eraseConnection(PortType::Out, _outPortIndex, id()); |
| 256 | } |
| 257 | |
| 258 | |
| 259 | ConnectionGraphicsObject& |
nothing calls this directly
no outgoing calls
no test coverage detected