| 3520 | |
| 3521 | |
| 3522 | BOOL CColorCopDlg::OnEraseBkgnd(CDC* pDC) { |
| 3523 | if (m_Appflags & DarkMode) { |
| 3524 | CRect rc; |
| 3525 | GetClientRect(&rc); |
| 3526 | pDC->FillSolidRect(&rc, RGB(32, 32, 32)); |
| 3527 | return TRUE; |
| 3528 | } |
| 3529 | |
| 3530 | return CDialog::OnEraseBkgnd(pDC); |
| 3531 | } |
nothing calls this directly
no outgoing calls
no test coverage detected