| 1325 | |
| 1326 | |
| 1327 | void CColorCopDlg::OnChangeRed() { |
| 1328 | m_Reddec = GetDlgItemInt(IDC_RED); |
| 1329 | m_Reddec = std::clamp(m_Reddec, RGB_MIN, RGB_MAX); |
| 1330 | |
| 1331 | CalcColorPal(); |
| 1332 | OnconvertRGB(); |
| 1333 | OnCopytoclip(); |
| 1334 | } |
| 1335 | |
| 1336 | void CColorCopDlg::OnChangeBlack() { |
| 1337 | m_Black = GetDlgItemInt(IDC_BLACK); |
nothing calls this directly
no outgoing calls
no test coverage detected