| 1313 | } |
| 1314 | |
| 1315 | void CMainFrame::OnViewFont(UINT /*uNotifyCode*/, int /*nID*/, CWindow /*wndCtl*/) |
| 1316 | { |
| 1317 | CFontDialog dlg(&m_logfont, CF_SCREENFONTS); |
| 1318 | if (dlg.DoModal(*this) == IDOK) |
| 1319 | { |
| 1320 | m_logfont = dlg.m_lf; |
| 1321 | SetLogFont(); |
| 1322 | } |
| 1323 | } |
| 1324 | |
| 1325 | void CMainFrame::SetLogFont() |
| 1326 | { |
nothing calls this directly
no outgoing calls
no test coverage detected