! Creates a new QCPPainter instance and sets default values */
| 283 | Creates a new QCPPainter instance and sets default values |
| 284 | */ |
| 285 | QCPPainter::QCPPainter() : |
| 286 | QPainter(), |
| 287 | mModes(pmDefault), |
| 288 | mIsAntialiasing(false) |
| 289 | { |
| 290 | // don't setRenderHint(QPainter::NonCosmeticDefautPen) here, because painter isn't active yet and |
| 291 | // a call to begin() will follow |
| 292 | } |
| 293 | |
| 294 | /*! |
| 295 | Creates a new QCPPainter instance on the specified paint \a device and sets default values. Just |
nothing calls this directly
no test coverage detected