| 23 | } |
| 24 | |
| 25 | void GraphItemNote::paint( QPainter* painter, const QStyleOptionGraphicsItem* option, QWidget* widget ) |
| 26 | { |
| 27 | painter->setPen( COLOR_White ); |
| 28 | painter->drawText( this->boundingRect(), Qt::AlignCenter | Qt::AlignTop, this->header); |
| 29 | painter->drawText( this->boundingRect(), Qt::AlignCenter | Qt::AlignBottom, this->text); |
| 30 | } |
| 31 | |
| 32 | |
| 33 |
nothing calls this directly
no test coverage detected