| 76 | } |
| 77 | |
| 78 | ScopedBkColor::~ScopedBkColor() |
| 79 | { |
| 80 | ::SetBkColor(m_hdc, m_color); |
| 81 | } |
| 82 | |
| 83 | ScopedTextAlign::ScopedTextAlign(HDC hdc, UINT align) : |
| 84 | m_hdc(hdc), m_align(::SetTextAlign(hdc, align)) |
nothing calls this directly
no outgoing calls
no test coverage detected