| 31 | |
| 32 | |
| 33 | void |
| 34 | ConnectionGeometry:: |
| 35 | setEndPoint(PortType portType, QPointF const& point) |
| 36 | { |
| 37 | switch (portType) |
| 38 | { |
| 39 | case PortType::Out: |
| 40 | _out = point; |
| 41 | break; |
| 42 | |
| 43 | case PortType::In: |
| 44 | _in = point; |
| 45 | break; |
| 46 | |
| 47 | default: |
| 48 | break; |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | |
| 53 | void |
nothing calls this directly
no outgoing calls
no test coverage detected