diff options
author | Kevin Walzer <kw@codebykevin.com> | 2020-09-05 02:06:35 (GMT) |
---|---|---|
committer | Kevin Walzer <kw@codebykevin.com> | 2020-09-05 02:06:35 (GMT) |
commit | dcc344628ea20e81734ad45da6284766bdacc9e2 (patch) | |
tree | afb5a12faaf06c4fd7f76b15d0f058a1cae581a3 /win/tkWinInit.c | |
parent | 34a0f0d7cb3fe34dd2e34c67cbb3bae73f3e444f (diff) | |
download | tk-dcc344628ea20e81734ad45da6284766bdacc9e2.zip tk-dcc344628ea20e81734ad45da6284766bdacc9e2.tar.gz tk-dcc344628ea20e81734ad45da6284766bdacc9e2.tar.bz2 |
Windows taskbar/system tray balloon notifications work! On to integrating TkTray in X11...
Diffstat (limited to 'win/tkWinInit.c')
-rw-r--r-- | win/tkWinInit.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/win/tkWinInit.c b/win/tkWinInit.c index 46813c4..9fff433 100644 --- a/win/tkWinInit.c +++ b/win/tkWinInit.c @@ -38,12 +38,10 @@ TkpInit( (void)interp; /* * This is necessary for static initialization, and is ok otherwise - * because TkWinXInit flips a static bit to do its work just once. + * because TkWinXInit flips a static bit to do its work just once. Also, + * initialize the Windows systray command here. */ - /* - * Initialize Windows systray command. - */ WinIcoInit(interp); TkWinXInit(Tk_GetHINSTANCE()); return TCL_OK; |