! Saves the painter (see QPainter::save). Since QCPPainter adds some new internal state to QPainter, the save/restore functions are reimplemented to also save/restore those members. \note this function hides the non-virtual base class implementation. \see restore */
| 450 | \see restore |
| 451 | */ |
| 452 | void QCPPainter::save() |
| 453 | { |
| 454 | mAntialiasingStack.push(mIsAntialiasing); |
| 455 | QPainter::save(); |
| 456 | } |
| 457 | |
| 458 | /*! |
| 459 | Restores the painter (see QPainter::restore). Since QCPPainter adds some new internal state to |
no test coverage detected