| 1352 | } |
| 1353 | |
| 1354 | void CColorCopDlg::OnChangeMagenta() { |
| 1355 | m_Magenta = GetDlgItemInt(IDC_MAGENTA); |
| 1356 | m_Magenta = std::clamp(m_Magenta, CMYK_MIN, CMYK_MAX); |
| 1357 | |
| 1358 | CalcColorPal(); |
| 1359 | OnconvertRGB(); |
| 1360 | OnCopytoclip(); |
| 1361 | } |
| 1362 | |
| 1363 | void CColorCopDlg::OnChangeYellow() { |
| 1364 | m_Yellow = GetDlgItemInt(IDC_YELLOW); |
nothing calls this directly
no outgoing calls
no test coverage detected