! 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 */
| 439 | \see restore |
| 440 | */ |
| 441 | void QCPPainter::save() |
| 442 | { |
| 443 | mAntialiasingStack.push(mIsAntialiasing); |
| 444 | QPainter::save(); |
| 445 | } |
| 446 | |
| 447 | /*! |
| 448 | Restores the painter (see QPainter::restore). Since QCPPainter adds some new internal state to |
no test coverage detected