| 81 | } |
| 82 | |
| 83 | ScopedTextAlign::ScopedTextAlign(HDC hdc, UINT align) : |
| 84 | m_hdc(hdc), m_align(::SetTextAlign(hdc, align)) |
| 85 | { |
| 86 | if (m_align == GDI_ERROR) |
| 87 | ThrowLastError("SetTextAlign"); |
| 88 | } |
| 89 | |
| 90 | ScopedTextAlign::~ScopedTextAlign() |
| 91 | { |
nothing calls this directly
no test coverage detected