diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-02-12 17:46:18 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-02-12 17:46:18 (GMT) |
commit | 505d8dc8bc999b995961dbd32c518620d843bdfe (patch) | |
tree | 675f802aa0010722ed2fbc3f0bacb0c804c37bfc /generic/tkStubInit.c | |
parent | 9ec06c1450bc3f4984cbee812e30d3c9bfc202b8 (diff) | |
download | tk-505d8dc8bc999b995961dbd32c518620d843bdfe.zip tk-505d8dc8bc999b995961dbd32c518620d843bdfe.tar.gz tk-505d8dc8bc999b995961dbd32c518620d843bdfe.tar.bz2 |
improved, faster implementations of XParseColor and TkParseColorbug_3486474
Diffstat (limited to 'generic/tkStubInit.c')
-rw-r--r-- | generic/tkStubInit.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/generic/tkStubInit.c b/generic/tkStubInit.c index 6df1f2d..a82e044 100644 --- a/generic/tkStubInit.c +++ b/generic/tkStubInit.c @@ -46,6 +46,12 @@ #define Tk_GetCanvasVisitor ((VOID * (*) _ANSI_ARGS_((Tcl_Interp * interp, \ CONST char * name))) NULL) +#ifndef __WIN32__ +/* Make sure that extensions which call XParseColor through + * the stub table, call TkParseColor in stead. See bug #3486474 */ +# define XParseColor TkParseColor +#endif + /* * WARNING: The contents of this file is automatically generated by the * tools/genStubs.tcl script. Any modifications to the function declarations |