* @brief Pops the QPainter state stack. */
| 796 | * @brief Pops the QPainter state stack. |
| 797 | */ |
| 798 | void Widgets::PainterContext::restore() |
| 799 | { |
| 800 | if (!active()) |
| 801 | return; |
| 802 | |
| 803 | m_painter->restore(); |
| 804 | } |
| 805 | |
| 806 | /** |
| 807 | * @brief Translates the painter origin by (x, y). |
no outgoing calls
no test coverage detected