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/xmfbox.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/xmfbox.tcl')
-rw-r--r-- | library/xmfbox.tcl | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/library/xmfbox.tcl b/library/xmfbox.tcl index 472aeb7..2e68a15 100644 --- a/library/xmfbox.tcl +++ b/library/xmfbox.tcl @@ -4,7 +4,7 @@ # Unix platform. This implementation is used only if the # "::tk_strictMotif" flag is set. # -# RCS: @(#) $Id: xmfbox.tcl,v 1.28 2006/01/25 18:22:04 dgp Exp $ +# RCS: @(#) $Id: xmfbox.tcl,v 1.29 2006/03/17 11:13:15 patthoyts Exp $ # # Copyright (c) 1996 Sun Microsystems, Inc. # Copyright (c) 1998-2000 Scriptics Corporation @@ -327,9 +327,9 @@ proc ::tk::MotifFDialog_BuildUI {w} { -sticky news grid $f2b -row 0 -column 1 -rowspan 1 -columnspan 1 -padx 4 -pady 4 \ -sticky news - grid rowconfig $f2 0 -minsize 0 -weight 1 - grid columnconfig $f2 0 -minsize 0 -weight 1 - grid columnconfig $f2 1 -minsize 150 -weight 2 + grid rowconfigure $f2 0 -minsize 0 -weight 1 + grid columnconfigure $f2 0 -minsize 0 -weight 1 + grid columnconfigure $f2 1 -minsize 150 -weight 2 # The Filter box # @@ -425,9 +425,9 @@ proc ::tk::MotifFDialog_MakeSList {w f label cmdPrefix} { grid $f.v -row 1 -column 1 -rowspan 1 -columnspan 1 -sticky news grid $f.h -row 2 -column 0 -rowspan 1 -columnspan 1 -sticky news - grid rowconfig $f 0 -weight 0 -minsize 0 - grid rowconfig $f 1 -weight 1 -minsize 0 - grid columnconfig $f 0 -weight 1 -minsize 0 + grid rowconfigure $f 0 -weight 0 -minsize 0 + grid rowconfigure $f 1 -weight 1 -minsize 0 + grid columnconfigure $f 0 -weight 1 -minsize 0 # bindings for the listboxes # |