diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-06-23 09:34:22 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-06-23 09:34:22 (GMT) |
commit | 2a8aa84ebc2dcbc33bab05beae43aea5309afa64 (patch) | |
tree | 046f4015b0fc954822a68fdbcb571fd7670a8d46 /win/tkWinSysTray.c | |
parent | 1c0e7e8d9fc0af72fe31e347374aa13e9a0fc055 (diff) | |
parent | 28381035e979943ffb752e4dbb73a9fcf2f52a8a (diff) | |
download | tk-2a8aa84ebc2dcbc33bab05beae43aea5309afa64.zip tk-2a8aa84ebc2dcbc33bab05beae43aea5309afa64.tar.gz tk-2a8aa84ebc2dcbc33bab05beae43aea5309afa64.tar.bz2 |
Fix [a9929f112a]: Bugs in the implementation of TIP 577 ("Enhanced index values for Tk").
Remove compat/stdint.h, since stdint.h is available in all modern C compilers
Diffstat (limited to 'win/tkWinSysTray.c')
-rw-r--r-- | win/tkWinSysTray.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/win/tkWinSysTray.c b/win/tkWinSysTray.c index 8ca6a45..8399abb 100644 --- a/win/tkWinSysTray.c +++ b/win/tkWinSysTray.c @@ -33,14 +33,6 @@ #define GETHINSTANCE Tk_GetHINSTANCE() -#ifdef HAVE_STDLIB_H -#include <stdlib.h> -#endif - -#ifdef HAVE_STDINT_H -#include <stdint.h> -#endif - typedef struct IcoInfo { HICON hIcon; /* icon handle returned by LoadIcon. */ unsigned id; /* Identifier for command; used to |