| 52 | } |
| 53 | |
| 54 | GdiObjectSelection::~GdiObjectSelection() |
| 55 | { |
| 56 | SelectObject(m_hdc, m_hObject); |
| 57 | } |
| 58 | |
| 59 | ScopedTextColor::ScopedTextColor(HDC hdc, COLORREF color) : |
| 60 | m_hdc(hdc), m_color(::SetTextColor(hdc, color)) |
nothing calls this directly
no outgoing calls
no test coverage detected