| 158 | } |
| 159 | |
| 160 | void CLabel::OnLButtonDown(UINT nFlags, CPoint point) { |
| 161 | CString strLink; |
| 162 | |
| 163 | GetWindowText(strLink); |
| 164 | ShellExecute(NULL, _T("open"), strLink, NULL, NULL, SW_SHOWNORMAL); |
| 165 | |
| 166 | CStatic::OnLButtonDown(nFlags, point); |
| 167 | } |
| 168 | |
| 169 | BOOL CLabel::OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message) { |
| 170 | if (m_hCursor) { |
nothing calls this directly
no outgoing calls
no test coverage detected