| 68 | |
| 69 | |
| 70 | QPainterPath |
| 71 | ConnectionGraphicsObject:: |
| 72 | shape() const |
| 73 | { |
| 74 | #ifdef DEBUG_DRAWING |
| 75 | |
| 76 | //QPainterPath path; |
| 77 | |
| 78 | //path.addRect(boundingRect()); |
| 79 | //return path; |
| 80 | |
| 81 | #else |
| 82 | auto const &geom = |
| 83 | _connection.connectionGeometry(); |
| 84 | |
| 85 | return ConnectionPainter::getPainterStroke(geom); |
| 86 | |
| 87 | #endif |
| 88 | } |
| 89 | |
| 90 | |
| 91 | void |
nothing calls this directly
no outgoing calls
no test coverage detected