diff options
author | hobbs <hobbs@noemail.net> | 2002-06-15 01:54:08 (GMT) |
---|---|---|
committer | hobbs <hobbs@noemail.net> | 2002-06-15 01:54:08 (GMT) |
commit | d56143a3561200db2cae71bada60a87629d52612 (patch) | |
tree | 9660b1fbaca51e447319221748a073d41d21743b /generic/tkEvent.c | |
parent | aa876a85c341800945bd9efa6dd06f1f1fa8a694 (diff) | |
download | tk-d56143a3561200db2cae71bada60a87629d52612.zip tk-d56143a3561200db2cae71bada60a87629d52612.tar.gz tk-d56143a3561200db2cae71bada60a87629d52612.tar.bz2 |
changed TK_USE_XIM_SPOT to TK_DISPLAY_XIM_SPOT for clarity
FossilOrigin-Name: fb49550f9a9154838aa2e800cf6aa4a94264d9c5
Diffstat (limited to 'generic/tkEvent.c')
-rw-r--r-- | generic/tkEvent.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkEvent.c b/generic/tkEvent.c index 16d2215..f096111 100644 --- a/generic/tkEvent.c +++ b/generic/tkEvent.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkEvent.c,v 1.13 2002/06/15 01:09:36 hobbs Exp $ + * RCS: @(#) $Id: tkEvent.c,v 1.14 2002/06/15 01:54:09 hobbs Exp $ */ #include "tkPort.h" @@ -866,7 +866,7 @@ Tk_HandleEvent(eventPtr) winPtr->flags |= TK_CHECKED_IC; if (dispPtr->inputMethod != NULL) { #if TK_XIM_SPOT - if (dispPtr->flags & TK_USE_XIM_SPOT) { + if (dispPtr->flags & TK_DISPLAY_XIM_SPOT) { XVaNestedList preedit_attr; XPoint spot = {0, 0}; |