diff options
author | dgp@users.sourceforge.net <dgp> | 2006-03-29 16:27:53 (GMT) |
---|---|---|
committer | dgp@users.sourceforge.net <dgp> | 2006-03-29 16:27:53 (GMT) |
commit | 5b6c9b9d29571e3e31a0c7f9bed22c9edc538501 (patch) | |
tree | f693116cb742db92eec57320ccfb2e0f7dad078f | |
parent | 044731640ca0e270fde4512bf04106a561c49ad2 (diff) | |
download | tk-5b6c9b9d29571e3e31a0c7f9bed22c9edc538501.zip tk-5b6c9b9d29571e3e31a0c7f9bed22c9edc538501.tar.gz tk-5b6c9b9d29571e3e31a0c7f9bed22c9edc538501.tar.bz2 |
* unix/tkUnixDefault.h: Changed "Black" to "#000000" and "White" to
"#ffffff" to work around the (broken?) X servers that do not accept
those color names. [Bug 917433]
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | unix/tkUnixDefault.h | 6 |
2 files changed, 9 insertions, 3 deletions
@@ -1,3 +1,9 @@ +2006-03-29 Don Porter <dgp@users.sourceforge.net> + + * unix/tkUnixDefault.h: Changed "Black" to "#000000" and "White" to + "#ffffff" to work around the (broken?) X servers that do not accept + those color names. [Bug 917433] + 2006-03-28 Jeff Hobbs <jeffh@ActiveState.com> * generic/tkWindow.c (CreateTopLevelWindow): use thread exit diff --git a/unix/tkUnixDefault.h b/unix/tkUnixDefault.h index f8af12d..908e060 100644 --- a/unix/tkUnixDefault.h +++ b/unix/tkUnixDefault.h @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkUnixDefault.h,v 1.16 2002/06/21 23:09:54 hobbs Exp $ + * RCS: @(#) $Id: tkUnixDefault.h,v 1.16.2.1 2006/03/29 16:27:53 dgp Exp $ */ #ifndef _TKUNIXDEFAULT @@ -26,8 +26,8 @@ * DISABLED - Foreground color when widget is disabled. */ -#define BLACK "Black" -#define WHITE "White" +#define BLACK "#000000" +#define WHITE "#ffffff" #define NORMAL_BG "#d9d9d9" #define ACTIVE_BG "#ececec" |