| 68 | } |
| 69 | |
| 70 | HBRUSH CDialogReBar::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor) |
| 71 | { |
| 72 | HBRUSH hbr = CDialogBar::OnCtlColor(pDC, pWnd, nCtlColor); |
| 73 | |
| 74 | if (nCtlColor == CTLCOLOR_STATIC && theApp.IsThemeActive() && !dynamic_cast<CLockedEdit*>(pWnd)) { |
| 75 | pDC->SetBkMode(TRANSPARENT); |
| 76 | return (HBRUSH)GetStockObject(NULL_BRUSH); |
| 77 | } |
| 78 | |
| 79 | return hbr; |
| 80 | } |
nothing calls this directly
no test coverage detected