| 1334 | } |
| 1335 | |
| 1336 | void CColorCopDlg::OnChangeBlack() { |
| 1337 | m_Black = GetDlgItemInt(IDC_BLACK); |
| 1338 | m_Black = std::clamp(m_Black, CMYK_MIN, CMYK_MAX); |
| 1339 | |
| 1340 | CalcColorPal(); |
| 1341 | OnconvertRGB(); |
| 1342 | OnCopytoclip(); |
| 1343 | } |
| 1344 | |
| 1345 | void CColorCopDlg::OnChangeCyan() { |
| 1346 | m_Cyan = GetDlgItemInt(IDC_CYAN); |
nothing calls this directly
no outgoing calls
no test coverage detected