* @brief Pushes the current QPainter state onto its stack. */
| 785 | * @brief Pushes the current QPainter state onto its stack. |
| 786 | */ |
| 787 | void Widgets::PainterContext::save() |
| 788 | { |
| 789 | if (!active()) |
| 790 | return; |
| 791 | |
| 792 | m_painter->save(); |
| 793 | } |
| 794 | |
| 795 | /** |
| 796 | * @brief Pops the QPainter state stack. |
no outgoing calls
no test coverage detected