| 1343 | } |
| 1344 | |
| 1345 | void CColorCopDlg::OnChangeCyan() { |
| 1346 | m_Cyan = GetDlgItemInt(IDC_CYAN); |
| 1347 | m_Cyan = std::clamp(m_Cyan, CMYK_MIN, CMYK_MAX); |
| 1348 | |
| 1349 | CalcColorPal(); |
| 1350 | OnconvertRGB(); |
| 1351 | OnCopytoclip(); |
| 1352 | } |
| 1353 | |
| 1354 | void CColorCopDlg::OnChangeMagenta() { |
| 1355 | m_Magenta = GetDlgItemInt(IDC_MAGENTA); |
nothing calls this directly
no outgoing calls
no test coverage detected