| 1306 | } |
| 1307 | |
| 1308 | void CColorCopDlg::OnChangeGreen() { |
| 1309 | m_Greendec = GetDlgItemInt(IDC_GREEN); |
| 1310 | m_Greendec = std::clamp(m_Greendec, RGB_MIN, RGB_MAX); |
| 1311 | |
| 1312 | CalcColorPal(); |
| 1313 | OnconvertRGB(); |
| 1314 | OnCopytoclip(); |
| 1315 | } |
| 1316 | |
| 1317 | void CColorCopDlg::OnChangeBlue() { |
| 1318 | m_Bluedec = GetDlgItemInt(IDC_BLUE); |
nothing calls this directly
no outgoing calls
no test coverage detected