diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2006-03-17 10:50:09 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2006-03-17 10:50:09 (GMT) |
commit | 61b0fcc820634ac1e3f1f3e27d25bba45f404085 (patch) | |
tree | 921509196316de91494787c783f250044e1765ed /library/xmfbox.tcl | |
parent | 6f349e302c311dd1f154a6aca76dda3e1909f416 (diff) | |
download | tk-61b0fcc820634ac1e3f1f3e27d25bba45f404085.zip tk-61b0fcc820634ac1e3f1f3e27d25bba45f404085.tar.gz tk-61b0fcc820634ac1e3f1f3e27d25bba45f404085.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 1899a33..953b6e2 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.25.2.2 2006/01/25 18:21:41 dgp Exp $ +# RCS: @(#) $Id: xmfbox.tcl,v 1.25.2.3 2006/03/17 10:50:11 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 # |