| 174 | |
| 175 | |
| 176 | QVariant |
| 177 | NodeGraphicsObject:: |
| 178 | itemChange(GraphicsItemChange change, const QVariant &value) |
| 179 | { |
| 180 | if (change == ItemPositionChange && scene()) |
| 181 | { |
| 182 | moveConnections(); |
| 183 | } |
| 184 | |
| 185 | return QGraphicsItem::itemChange(change, value); |
| 186 | } |
| 187 | |
| 188 | |
| 189 | void |
nothing calls this directly
no outgoing calls
no test coverage detected