MCPcopy Create free account
hub / github.com/ColorCop/ColorCop / OnOptionsUppercasehex

Method OnOptionsUppercasehex

ColorCop/ColorCopDlg.cpp:2582–2591  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2580}
2581
2582void 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
2593void CColorCopDlg::OnUpdateOptionsUppercasehex(CCmdUI* pCmdUI) {
2594 pCmdUI->SetCheck(m_Appflags & UpperCaseHex);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected