From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24319 invoked by alias); 6 May 2002 21:13:01 -0000 Mailing-List: contact insight-prs-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: insight-prs-owner@sources.redhat.com Received: (qmail 24266 invoked by uid 71); 6 May 2002 21:13:01 -0000 Resent-Date: 6 May 2002 21:13:01 -0000 Resent-Message-ID: <20020506211301.24265.qmail@sources.redhat.com> Resent-From: insight-gnats@sources.redhat.com (GNATS Filer) Resent-To: nobody@sources.redhat.com Resent-Cc: insight-prs@sources.redhat.com Resent-Reply-To: insight-gnats@sources.redhat.com, craig@triscend.com Received:(qmail 24222 invoked by uid 61); 6 May 2002 21:12:58 -0000 Message-Id:<20020506211258.24221.qmail@sources.redhat.com> Date: Mon, 06 May 2002 14:13:00 -0000 From: craig@triscend.com Reply-To: craig@triscend.com To: insight-gnats@sources.redhat.com X-Send-Pr-Version:gnatsweb-2.9.3 (1.1.1.1.2.31) Subject: insight/144: No title above enabled column in breakpoint window X-SW-Source: 2002-q2/txt/msg00012.txt.bz2 List-Id: >Number: 144 >Category: insight >Synopsis: No title above enabled column in breakpoint window >Confidential: no >Severity: non-critical >Priority: medium >Responsible: unassigned >State: open >Class: sw-bug >Submitter-Id: net >Arrival-Date: Mon May 06 14:13:00 PDT 2002 >Closed-Date: >Last-Modified: >Originator: craig@triscend.com >Release: unknown-1.0 >Organization: >Environment: Windows 2000/Cygwin >Description: There is no title in the breakpoint window for the breakpoint enabled (check box) column. >How-To-Repeat: >Fix: See attached patch file. >Release-Note: >Audit-Trail: >Unformatted: ----gnatsweb-attachment---- Content-Type: text/plain; name="bpwin.itb.pat" Content-Disposition: inline; filename="bpwin.itb.pat" Index: gdb/gdbtk/library/bpwin.itb =================================================================== RCS file: /cvs/src/src/gdb/gdbtk/library/bpwin.itb,v retrieving revision 1.13 diff -c -p -r1.13 bpwin.itb *** gdb/gdbtk/library/bpwin.itb 14 Mar 2002 17:12:10 -0000 1.13 --- gdb/gdbtk/library/bpwin.itb 6 May 2002 20:45:49 -0000 *************** body BpWin::build_win {} { *** 74,79 **** --- 74,81 ---- } label $twin.thread0 -text "Thread" -relief raised -bd 2 -anchor center \ -font global/fixed + label $twin.enabled0 -text "Enabled" -relief raised -bd 2 -anchor center \ + -font global/fixed label $twin.addr0 -text "Address" -relief raised -bd 2 -anchor center \ -font global/fixed label $twin.file0 -text "File" -relief raised -bd 2 -anchor center \ *************** body BpWin::build_win {} { *** 86,101 **** if {$tracepoints} { label $twin.pass0 -text "PassCount" -relief raised -borderwidth 2 \ -anchor center -font global/fixed ! grid x $twin.num0 $twin.addr0 $twin.file0 $twin.line0 $twin.func0 $twin.pass0 \ -sticky new } else { if {$show_threads} { ! grid x $twin.thread0 $twin.addr0 $twin.file0 $twin.line0 $twin.func0 -sticky new # Let the File and Function columns expand; no others. grid columnconfigure $twin 3 -weight 1 grid columnconfigure $twin 5 -weight 1 } else { ! grid x $twin.addr0 $twin.file0 $twin.line0 $twin.func0 -sticky new # Let the File and Function columns expand; no others. grid columnconfigure $twin 2 -weight 1 grid columnconfigure $twin 4 -weight 1 --- 88,103 ---- if {$tracepoints} { label $twin.pass0 -text "PassCount" -relief raised -borderwidth 2 \ -anchor center -font global/fixed ! grid $twin.enabled0 $twin.num0 $twin.addr0 $twin.file0 $twin.line0 $twin.func0 $twin.pass0 \ -sticky new } else { if {$show_threads} { ! grid $twin.enabled0 $twin.thread0 $twin.addr0 $twin.file0 $twin.line0 $twin.func0 -sticky new # Let the File and Function columns expand; no others. grid columnconfigure $twin 3 -weight 1 grid columnconfigure $twin 5 -weight 1 } else { ! grid $twin.enabled0 $twin.addr0 $twin.file0 $twin.line0 $twin.func0 -sticky new # Let the File and Function columns expand; no others. grid columnconfigure $twin 2 -weight 1 grid columnconfigure $twin 4 -weight 1