diff options
author | dkf <dkf@noemail.net> | 2003-11-18 23:39:43 (GMT) |
---|---|---|
committer | dkf <dkf@noemail.net> | 2003-11-18 23:39:43 (GMT) |
commit | 67e16f54995564ca53de35aea10750c14b56f36f (patch) | |
tree | 239ef191c5c60039c5ccf26be04e875ce2c2044d | |
parent | 3d9e96b1a4f16eb9439a4f83d603f7634dac19bf (diff) | |
download | tk-67e16f54995564ca53de35aea10750c14b56f36f.zip tk-67e16f54995564ca53de35aea10750c14b56f36f.tar.gz tk-67e16f54995564ca53de35aea10750c14b56f36f.tar.bz2 |
Stupid typo fix. [Bug 843395]
FossilOrigin-Name: d0371f44e31bafe2f440f01ecf714aea516cc077
-rw-r--r-- | generic/tkMenuDraw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkMenuDraw.c b/generic/tkMenuDraw.c index d2c022a..ba34460 100644 --- a/generic/tkMenuDraw.c +++ b/generic/tkMenuDraw.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMenuDraw.c,v 1.6 2003/11/13 16:07:06 dkf Exp $ + * RCS: @(#) $Id: tkMenuDraw.c,v 1.7 2003/11/18 23:39:43 dkf Exp $ */ #include "tkMenu.h" @@ -1010,7 +1010,7 @@ TkPostSubmenu(interp, menuPtr, mePtr) subary[0] = mePtr->namePtr; subary[1] = Tcl_NewStringObj("post", -1); subary[2] = Tcl_NewIntObj(x); - subary[3] = Tcl_NewIntObj(x); + subary[3] = Tcl_NewIntObj(y); Tcl_IncrRefCount(subary[1]); Tcl_IncrRefCount(subary[2]); Tcl_IncrRefCount(subary[3]); |