diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2006-03-17 11:13:13 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2006-03-17 11:13:13 (GMT) |
commit | f04aa73019b758db9a04fc8a5a8cde258e1c3535 (patch) | |
tree | 40cd21e974be96a8dfc98df93348ce5ccdb673d9 /library/palette.tcl | |
parent | 58c3d258aa0068b5b91068e0ecbdb648e279f362 (diff) | |
download | tk-f04aa73019b758db9a04fc8a5a8cde258e1c3535.zip tk-f04aa73019b758db9a04fc8a5a8cde258e1c3535.tar.gz tk-f04aa73019b758db9a04fc8a5a8cde258e1c3535.tar.bz2 |
bug #1451587: avoid using abbreviated sub-commands in
core scripts as this can cause problems with mega-widget
libraries like snit.
Diffstat (limited to 'library/palette.tcl')
-rw-r--r-- | library/palette.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/palette.tcl b/library/palette.tcl index 6e380d8..323d372 100644 --- a/library/palette.tcl +++ b/library/palette.tcl @@ -3,7 +3,7 @@ # This file contains procedures that change the color palette used # by Tk. # -# RCS: @(#) $Id: palette.tcl,v 1.10 2006/01/25 18:22:04 dgp Exp $ +# RCS: @(#) $Id: palette.tcl,v 1.11 2006/03/17 11:13:15 patthoyts Exp $ # # Copyright (c) 1995-1997 Sun Microsystems, Inc. # @@ -171,7 +171,7 @@ proc ::tk::RecolorTree {w colors} { set option -[string tolower $dbOption] set class [string replace $dbOption 0 0 [string toupper \ [string index $dbOption 0]]] - if {![catch {$w config $option} value]} { + if {![catch {$w configure $option} value]} { # if the option database has a preference for this # dbOption, then use it, otherwise use the defaults # for the widget. |