| 780 | } |
| 781 | |
| 782 | void CScrollBarUI::DoPaint(HDC hDC, const RECT& rcPaint) |
| 783 | { |
| 784 | if( !::IntersectRect(&m_rcPaint, &rcPaint, &m_rcItem) ) return; |
| 785 | PaintBk(hDC); |
| 786 | PaintButton1(hDC); |
| 787 | PaintButton2(hDC); |
| 788 | PaintThumb(hDC); |
| 789 | PaintRail(hDC); |
| 790 | } |
| 791 | |
| 792 | void CScrollBarUI::PaintBk(HDC hDC) |
| 793 | { |
nothing calls this directly
no outgoing calls
no test coverage detected