| 21 | } |
| 22 | |
| 23 | BOOL CAboutDlg::OnInitDialog() { |
| 24 | CDialog::OnInitDialog(); |
| 25 | |
| 26 | m_link.SetLink(TRUE) |
| 27 | .SetTextColor(RGB(0, 0, 255)) |
| 28 | .SetFontUnderline(TRUE) |
| 29 | .SetLinkCursor(AfxGetApp()->LoadCursor(IDC_HANDPOINTER)); |
| 30 | |
| 31 | m_maillink.SetLink(TRUE) |
| 32 | .SetTextColor(RGB(0, 0, 255)) |
| 33 | .SetFontUnderline(TRUE) |
| 34 | .SetLinkCursor(AfxGetApp()->LoadCursor(IDC_HANDPOINTER)); |
| 35 | |
| 36 | return TRUE; |
| 37 | } |
nothing calls this directly
no outgoing calls
no test coverage detected