| 84 | } |
| 85 | |
| 86 | void TextTip::paintEvent(QPaintEvent *event) |
| 87 | { |
| 88 | QStylePainter p(this); |
| 89 | QStyleOptionFrame opt; |
| 90 | opt.initFrom(this); |
| 91 | p.drawPrimitive(QStyle::PE_PanelTipLabel, opt); |
| 92 | p.end(); |
| 93 | |
| 94 | QLabel::paintEvent(event); |
| 95 | } |
| 96 | |
| 97 | void TextTip::resizeEvent(QResizeEvent *event) |
| 98 | { |
nothing calls this directly
no test coverage detected