diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-02-15 21:09:27 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-02-15 21:09:27 (GMT) |
commit | 41cc9023c9d8ba470b41666d54cfe4db9bbb5020 (patch) | |
tree | c95bfcb0f17783a66f7d2613c8962ecbd1a63748 /generic/tkInt.h | |
parent | da13c5e294143c51bdee3d5d9f42c72b1843dc51 (diff) | |
parent | 3db9fce4a20b8969cd5c73671c76dd4918d048f9 (diff) | |
download | tk-41cc9023c9d8ba470b41666d54cfe4db9bbb5020.zip tk-41cc9023c9d8ba470b41666d54cfe4db9bbb5020.tar.gz tk-41cc9023c9d8ba470b41666d54cfe4db9bbb5020.tar.bz2 |
[Bug 3486474]: Inconsistent color scaling
Diffstat (limited to 'generic/tkInt.h')
-rw-r--r-- | generic/tkInt.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/generic/tkInt.h b/generic/tkInt.h index 51bc896..4faf908 100644 --- a/generic/tkInt.h +++ b/generic/tkInt.h @@ -1211,6 +1211,14 @@ MODULE_SCOPE int TkInitFontchooser(Tcl_Interp *interp, ClientData clientData); MODULE_SCOPE void TkpWarpPointer(TkDisplay *dispPtr); +#ifdef __WIN32__ +#define TkParseColor XParseColor +#else +MODULE_SCOPE Status TkParseColor (Display * display, + Colormap map, _Xconst char* spec, + XColor * colorPtr); +#endif + /* * Unsupported commands. */ |