diff options
author | ericm <ericm> | 2000-10-30 20:04:16 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-10-30 20:04:16 (GMT) |
commit | a9cde766a59152713ad488a8c0b3a37b1bfe5e3b (patch) | |
tree | 038c4d7de60b02b3362ecdf9d81c8c16f3ee5d8a | |
parent | cbe4193da475122d9dca8bfa030decadea66242c (diff) | |
download | tk-a9cde766a59152713ad488a8c0b3a37b1bfe5e3b.zip tk-a9cde766a59152713ad488a8c0b3a37b1bfe5e3b.tar.gz tk-a9cde766a59152713ad488a8c0b3a37b1bfe5e3b.tar.bz2 |
Added type cast to (ClientData) for &CustomOption in option tests.
-rw-r--r-- | generic/tkTest.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tkTest.c b/generic/tkTest.c index 891e7f6..b047b2d 100644 --- a/generic/tkTest.c +++ b/generic/tkTest.c @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkTest.c,v 1.14 2000/09/29 17:55:31 ericm Exp $ + * RCS: @(#) $Id: tkTest.c,v 1.15 2000/10/30 20:04:16 ericm Exp $ */ #include "tkInt.h" @@ -784,7 +784,7 @@ TestobjconfigObjCmd(clientData, interp, objc, objv) {TK_OPTION_CUSTOM, "-custom", (char *) NULL, (char *) NULL, "", Tk_Offset(TypesRecord, customPtr), -1, - TK_CONFIG_NULL_OK, &CustomOption, 0x4000}, + TK_CONFIG_NULL_OK, (ClientData)&CustomOption, 0x4000}, {TK_OPTION_SYNONYM, "-synonym", (char *) NULL, (char *) NULL, (char *) NULL, 0, -1, 0, (ClientData) "-color", @@ -1100,7 +1100,7 @@ TestobjconfigObjCmd(clientData, interp, objc, objv) {TK_OPTION_CUSTOM, "-custom", (char *) NULL, (char *) NULL, "", -1, Tk_Offset(InternalRecord, custom), - TK_CONFIG_NULL_OK, &CustomOption, 0x4000}, + TK_CONFIG_NULL_OK, (ClientData)&CustomOption, 0x4000}, {TK_OPTION_SYNONYM, "-synonym", (char *) NULL, (char *) NULL, (char *) NULL, -1, -1, 0, (ClientData) "-color", |