| 2491 | } |
| 2492 | |
| 2493 | void CColorCopDlg::OnOptionsOmitsymbol() { |
| 2494 | m_Appflags ^= OmitPound; |
| 2495 | if (m_Appflags & OmitPound) |
| 2496 | SetStatusBarText(IDS_OMITSYMBOL, 1); |
| 2497 | else |
| 2498 | SetStatusBarText(IDS_OMITSYMBOL, 2); |
| 2499 | |
| 2500 | FigurePound(); |
| 2501 | } |
| 2502 | |
| 2503 | void CColorCopDlg::FigurePound() { |
| 2504 | // This function adds or removes characters from the hex edit control |
nothing calls this directly
no outgoing calls
no test coverage detected