| 57 | } |
| 58 | |
| 59 | ScopedTextColor::ScopedTextColor(HDC hdc, COLORREF color) : |
| 60 | m_hdc(hdc), m_color(::SetTextColor(hdc, color)) |
| 61 | { |
| 62 | if (m_color == CLR_INVALID) |
| 63 | ThrowLastError("SetTextColor"); |
| 64 | } |
| 65 | |
| 66 | ScopedTextColor::~ScopedTextColor() |
| 67 | { |
nothing calls this directly
no test coverage detected