diff options
author | tmh <tmh> | 2008-08-27 18:49:46 (GMT) |
---|---|---|
committer | tmh <tmh> | 2008-08-27 18:49:46 (GMT) |
commit | 17d41c87b3ea1ed10b1170baa6813c808421e089 (patch) | |
tree | c0a1fcbfeafe2c7d313d88849f456ac5eedd77f0 | |
parent | 63abd8e6e3426820f6a2efbebb07bbc89bd43674 (diff) | |
download | tk-17d41c87b3ea1ed10b1170baa6813c808421e089.zip tk-17d41c87b3ea1ed10b1170baa6813c808421e089.tar.gz tk-17d41c87b3ea1ed10b1170baa6813c808421e089.tar.bz2 |
fix typo in menu.tcl
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | library/menu.tcl | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2008-08-25 Todd M. Helfter <tmh@users.sourceforge.net> + + * library/menu.tcl: fix typo from [Bug 1023955] + 2008-08-27 Peter Spjuth <peter.spjuth@gmail.com> * tests/grid.test: Added a "knownBug"-marked test to show a problem diff --git a/library/menu.tcl b/library/menu.tcl index f0f81d8..381da68 100644 --- a/library/menu.tcl +++ b/library/menu.tcl @@ -4,7 +4,7 @@ # It also implements keyboard traversal of menus and implements a few # other utility procedures related to menus. # -# RCS: @(#) $Id: menu.tcl,v 1.28 2008/08/25 23:05:40 tmh Exp $ +# RCS: @(#) $Id: menu.tcl,v 1.29 2008/08/27 18:49:46 tmh Exp $ # # Copyright (c) 1992-1994 The Regents of the University of California. # Copyright (c) 1994-1997 Sun Microsystems, Inc. @@ -261,7 +261,7 @@ proc ::tk::MbPost {w {x {}} {y {}}} { if {$cur ne ""} { MenuUnpost {} } - if {$::tk_stricktMotif} { + if {$::tk_strictMotif} { set Priv(cursor) [$w cget -cursor] $w configure -cursor arrow } |