| 27 | */ |
| 28 | |
| 29 | Segment::Segment(DatapickerImage* image) |
| 30 | : m_image(image) |
| 31 | , d_ptr(new SegmentPrivate(this)) { |
| 32 | m_image->scene()->addItem(this->graphicsItem()); |
| 33 | } |
| 34 | |
| 35 | QGraphicsItem* Segment::graphicsItem() const { |
| 36 | return d_ptr; |
nothing calls this directly
no test coverage detected