| 153 | } |
| 154 | |
| 155 | BOOL CSystemTray::SetIcon(HICON hIcon) { |
| 156 | if (!m_bEnabled) return FALSE; |
| 157 | |
| 158 | m_tnd.uFlags = NIF_ICON; |
| 159 | m_tnd.hIcon = hIcon; |
| 160 | |
| 161 | return Shell_NotifyIcon(NIM_MODIFY, &m_tnd); |
| 162 | } |
| 163 | |
| 164 | BOOL CSystemTray::SetIcon(LPCTSTR lpszIconName) { |
| 165 | HICON hIcon = AfxGetApp()->LoadIcon(lpszIconName); |
no outgoing calls
no test coverage detected