MCPcopy Create free account
hub / github.com/ColorCop/ColorCop / HideIcon

Method HideIcon

ColorCop/SystemTray.cpp:139–145  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

137}
138
139void CSystemTray::HideIcon() {
140 if (m_bEnabled && !m_bHidden) {
141 m_tnd.uFlags = NIF_ICON;
142 Shell_NotifyIcon(NIM_DELETE, &m_tnd);
143 m_bHidden = TRUE;
144 }
145}
146
147void CSystemTray::ShowIcon() {
148 if (m_bEnabled && m_bHidden) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected