inherits documentation from base class */
| 673 | |
| 674 | /* inherits documentation from base class */ |
| 675 | void QCPPaintBufferPixmap::draw(QCPPainter *painter) const |
| 676 | { |
| 677 | if (painter && painter->isActive()) |
| 678 | painter->drawPixmap(0, 0, mBuffer); |
| 679 | else |
| 680 | qDebug() << Q_FUNC_INFO << "invalid or inactive painter passed"; |
| 681 | } |
| 682 | |
| 683 | /* inherits documentation from base class */ |
| 684 | void QCPPaintBufferPixmap::clear(const QColor &color) |
no test coverage detected