| 301 | } |
| 302 | |
| 303 | void MainAppWindow::UpdateTrayVisibility(bool visible) |
| 304 | { |
| 305 | if (!m_HideIconOverride && visible) |
| 306 | { |
| 307 | Show(); |
| 308 | } |
| 309 | else |
| 310 | { |
| 311 | Hide(); |
| 312 | } |
| 313 | } |
| 314 | |
| 315 | MainAppWindow::MainAppWindow(Application &app, bool hideIconOverride, bool hasPackageIdentity, HINSTANCE hInstance, DynamicLoader &loader) : |
| 316 | // make the window topmost so that the context menu shows correctly |
nothing calls this directly
no outgoing calls
no test coverage detected