| 51 | |
| 52 | |
| 53 | void |
| 54 | ConnectionGeometry:: |
| 55 | moveEndPoint(PortType portType, QPointF const &offset) |
| 56 | { |
| 57 | switch (portType) |
| 58 | { |
| 59 | case PortType::Out: |
| 60 | _out += offset; |
| 61 | break; |
| 62 | |
| 63 | case PortType::In: |
| 64 | _in += offset; |
| 65 | break; |
| 66 | |
| 67 | default: |
| 68 | break; |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | |
| 73 | QRectF |
nothing calls this directly
no outgoing calls
no test coverage detected