| 2580 | } |
| 2581 | |
| 2582 | void CColorCopDlg::OnOptionsUppercasehex() { |
| 2583 | m_Appflags ^= UpperCaseHex; |
| 2584 | |
| 2585 | if (m_Appflags & UpperCaseHex) |
| 2586 | SetStatusBarText(IDS_UPPERHEX, 1); |
| 2587 | else |
| 2588 | SetStatusBarText(IDS_UPPERHEX, 2); |
| 2589 | |
| 2590 | TestForUpperHex(); |
| 2591 | } |
| 2592 | |
| 2593 | void CColorCopDlg::OnUpdateOptionsUppercasehex(CCmdUI* pCmdUI) { |
| 2594 | pCmdUI->SetCheck(m_Appflags & UpperCaseHex); |
nothing calls this directly
no outgoing calls
no test coverage detected