From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1412 invoked by alias); 4 Feb 2003 08:02:45 -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 1405 invoked from network); 4 Feb 2003 08:02:45 -0000 Received: from unknown (HELO mx1.redhat.com) (172.16.49.200) by 172.16.49.205 with SMTP; 4 Feb 2003 08:02:45 -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 h1482jf27530 for ; Tue, 4 Feb 2003 03:02:45 -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 h1482ia26979 for ; Tue, 4 Feb 2003 03:02:44 -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 h1482iX28860 for ; Tue, 4 Feb 2003 03:02:44 -0500 Subject: [patch] clean up targetselection dialog From: "Martin M. Hunt" To: "insight@sources.redhat.com" Content-Type: multipart/mixed; boundary="=-MNcrabAzS3gvDsakiliB" Date: Tue, 04 Feb 2003 08:02:00 -0000 Message-Id: <1044345769.2679.15.camel@Dragon> Mime-Version: 1.0 X-SW-Source: 2003-q1/txt/msg00073.txt.bz2 --=-MNcrabAzS3gvDsakiliB Content-Type: text/plain Content-Transfer-Encoding: 7bit Content-length: 210 This removes a duplicate lable and fixes alignment in the target dialog. 2003-02-03 Martin M. Hunt * library/targetselection.itb (TargetSelection::build_win): Remove duplicate label. --=-MNcrabAzS3gvDsakiliB Content-Disposition: attachment; filename=p Content-Transfer-Encoding: quoted-printable Content-Type: text/x-patch; name=p; charset=UTF-8 Content-length: 1389 Index: library/targetselection.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/targetselection.itb,v retrieving revision 1.14 diff -u -r1.14 targetselection.itb --- library/targetselection.itb 4 Feb 2003 07:43:32 -0000 1.14 +++ library/targetselection.itb 4 Feb 2003 08:01:32 -0000 @@ -547,7 +547,6 @@ set rm_frame [iwidgets::labeledframe $frame.run_method -labelpos nw -lab= eltext "Run Method" ] set RunMethod [ $rm_frame childsite ] =20 - set rm_label [label $frame.label -text "Run Method:"] set var [pref varname gdb/src/run_cont] radiobutton $RunMethod.cont -text {Continue from Last Stop} -value 1 -va= riable $var \ -command [code $this set_run run] @@ -560,9 +559,8 @@ set _after_entry [entry $frame.aftere] label $frame.afterl -text {Command to issue after attaching:} =20 - grid $frame.label -column 1 -row 0 -sticky w - grid $frame.attach -column 0 -row 1 -ipady 2 - grid $frame.load -column 0 -row 2 -ipady 2 + grid $frame.attach -column 0 -row 1 -padx 10 -sticky w + grid $frame.load -column 0 -row 2 -padx 10 -sticky w =20 grid $RunMethod.run -column 0 -row 1 -sticky w -ipady 2 grid $RunMethod.cont -column 0 -row 2 -sticky w -ipady 2 --=-MNcrabAzS3gvDsakiliB--