| 157 | } |
| 158 | |
| 159 | static bool IsColorDark(COLORREF clrBackground) |
| 160 | { |
| 161 | return !(GetRValue(clrBackground) >= 0x80 || GetGValue(clrBackground) >= 0x80 || GetBValue(clrBackground) >= 0x80); |
| 162 | |
| 163 | } |
| 164 | |
| 165 | COLORREF CLocationView::GetBackgroundColor() |
| 166 | { |
no outgoing calls
no test coverage detected