diff options
author | marha <marha@users.sourceforge.net> | 2009-09-16 12:44:59 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2009-09-16 12:44:59 +0000 |
commit | 2d0a6c90d6c70a61d1b95a24c450f05ff9deed50 (patch) | |
tree | 24250138176c92c6241a85067dd110ffc1200a29 /xorg-server/hw/xwin/winwndproc.c | |
parent | c250a1fb6e2732e9b9e66f61bf3db358316e5ea1 (diff) | |
download | vcxsrv-2d0a6c90d6c70a61d1b95a24c450f05ff9deed50.tar.gz vcxsrv-2d0a6c90d6c70a61d1b95a24c450f05ff9deed50.tar.bz2 vcxsrv-2d0a6c90d6c70a61d1b95a24c450f05ff9deed50.zip |
Display the number of active clients in the tray icon tooltip.
Diffstat (limited to 'xorg-server/hw/xwin/winwndproc.c')
-rw-r--r-- | xorg-server/hw/xwin/winwndproc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xorg-server/hw/xwin/winwndproc.c b/xorg-server/hw/xwin/winwndproc.c index 0399545f8..c0cdba7a4 100644 --- a/xorg-server/hw/xwin/winwndproc.c +++ b/xorg-server/hw/xwin/winwndproc.c @@ -159,7 +159,7 @@ winWindowProc (HWND hwnd, UINT message, s_pScreenPriv->hwndScreen = hwnd; - winInitNotifyIcon (s_pScreenPriv); + winInitNotifyIcon (s_pScreenPriv,FALSE); } return 0; @@ -1272,7 +1272,7 @@ winWindowProc (HWND hwnd, UINT message, default: if(message == s_uTaskbarRestart) { - winInitNotifyIcon (s_pScreenPriv); + winInitNotifyIcon (s_pScreenPriv,FALSE); } break; } |