| 652 | } |
| 653 | |
| 654 | DWORD CControlUI::GetAdjustColor(DWORD dwColor) |
| 655 | { |
| 656 | if( !m_bColorHSL ) return dwColor; |
| 657 | short H, S, L; |
| 658 | CPaintManagerUI::GetHSL(&H, &S, &L); |
| 659 | return CRenderEngine::AdjustColor(dwColor, H, S, L); |
| 660 | } |
| 661 | |
| 662 | void CControlUI::Init() |
| 663 | { |
nothing calls this directly
no outgoing calls
no test coverage detected