From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1767 invoked by alias); 3 Dec 2002 22:53:40 -0000 Mailing-List: contact insight-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: insight-owner@sources.redhat.com Received: (qmail 1760 invoked from network); 3 Dec 2002 22:53:37 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sources.redhat.com with SMTP; 3 Dec 2002 22:53:37 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.11.6/8.11.6) with ESMTP id gB3MScP08080 for ; Tue, 3 Dec 2002 17:28:38 -0500 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [172.16.52.156]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id gB3MrbD21094 for ; Tue, 3 Dec 2002 17:53:37 -0500 Received: from dragon (romulus-int.sfbay.redhat.com [172.16.27.46]) by pobox.corp.redhat.com (8.11.6/8.11.6) with ESMTP id gB3Mra927510 for ; Tue, 3 Dec 2002 17:53:36 -0500 Subject: [patch] change grid "-col" to "-column" From: "Martin M. Hunt" To: "insight@sources.redhat.com" Content-Type: multipart/mixed; boundary="=-00ba1LXRKT1pdMITY09O" Date: Tue, 03 Dec 2002 14:53:00 -0000 Message-Id: <1038956107.1168.66.camel@Dragon> Mime-Version: 1.0 X-SW-Source: 2002-q4/txt/msg00150.txt.bz2 --=-00ba1LXRKT1pdMITY09O Content-Type: text/plain Content-Transfer-Encoding: 7bit Content-length: 173 2002-12-03 Martin M. Hunt * library/srcpref.itb: Latest tk doesn't support "-col" as a grid option. Use "-column". * library/regwin.itb: Ditto. --=-00ba1LXRKT1pdMITY09O Content-Disposition: attachment; filename=p Content-Transfer-Encoding: quoted-printable Content-Type: text/x-patch; name=p; charset=UTF-8 Content-length: 2781 Index: regwin.itb =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /cvs/src/src/gdb/gdbtk/library/regwin.itb,v retrieving revision 1.19 diff -p -r1.19 regwin.itb *** regwin.itb 6 Nov 2002 20:45:53 -0000 1.19 --- regwin.itb 3 Dec 2002 22:51:44 -0000 *************** itcl::body RegWin::_build_win {} { *** 202,210 **** $itk_component(hscroll) configure -command [code $itk_component(table) = xview] $itk_component(vscroll) configure -command [code $itk_component(table) = yview] =20=20 ! grid $itk_component(table) -row 0 -col 0 -sticky news ! grid $itk_component(vscroll) -row 0 -col 1 -sticky ns ! grid $itk_component(hscroll) -row 1 -col 0 -sticky ew grid columnconfigure $itk_interior 0 -weight 1 grid rowconfigure $itk_interior 0 -weight 1 =20=20 --- 202,210 ---- $itk_component(hscroll) configure -command [code $itk_component(table) = xview] $itk_component(vscroll) configure -command [code $itk_component(table) = yview] =20=20 ! grid $itk_component(table) -row 0 -column 0 -sticky news ! grid $itk_component(vscroll) -row 0 -column 1 -sticky ns ! grid $itk_component(hscroll) -row 1 -column 0 -sticky ew grid columnconfigure $itk_interior 0 -weight 1 grid rowconfigure $itk_interior 0 -weight 1 =20=20 Index: srcpref.itb =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /cvs/src/src/gdb/gdbtk/library/srcpref.itb,v retrieving revision 1.7 diff -p -r1.7 srcpref.itb *** srcpref.itb 15 Oct 2002 21:19:51 -0000 1.7 --- srcpref.itb 3 Dec 2002 22:51:45 -0000 *************** itcl::body SrcPref::_build_win {} { *** 124,131 **** radiobutton $w.var_on -text "On " -variable [scope $var] -value 1 radiobutton $w.var_off -text "Off" -variable [scope $var] -value 0 pack $w.var_on $w.var_off -side top ! grid $f.rmv.mode -sticky nsew -pady 5 -row 0 -col 0 ! grid $f.rmv.var -sticky nsew -pady 5 -row 0 -col 2 grid columnconfigure $f.rmv 0 -weight 1 grid columnconfigure $f.rmv 1 -minsize 4 grid columnconfigure $f.rmv 2 -weight 1 --- 124,131 ---- radiobutton $w.var_on -text "On " -variable [scope $var] -value 1 radiobutton $w.var_off -text "Off" -variable [scope $var] -value 0 pack $w.var_on $w.var_off -side top ! grid $f.rmv.mode -sticky nsew -pady 5 -row 0 -column 0 ! grid $f.rmv.var -sticky nsew -pady 5 -row 0 -column 2 grid columnconfigure $f.rmv 0 -weight 1 grid columnconfigure $f.rmv 1 -minsize 4 grid columnconfigure $f.rmv 2 -weight 1 --=-00ba1LXRKT1pdMITY09O--