From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15423 invoked by alias); 3 Jan 2002 21:20: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 15337 invoked from network); 3 Jan 2002 21:20:39 -0000 X-Authentication-Warning: makita.cygnus.com: keiths owned process doing -bs Date: Thu, 03 Jan 2002 13:20:00 -0000 From: Keith Seitz X-X-Sender: To: "Martin M. Hunt" cc: Insight Mailing List Subject: Re: [RFA] debug window fix In-Reply-To: <200201032110.NAA03514@cygnus.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-SW-Source: 2002-q1/txt/msg00012.txt.bz2 On Thu, 3 Jan 2002, Martin M. Hunt wrote: > There is a problem with the Debug WIndow options dialog. > Selecting one of the 3 radiobuttons on the top causes > the error. Yikes! I'd say this is pretty obvious, no? Thanks! Keith > > -- > Martin Hunt > GDB Engineer > Red Hat, Inc. > > 2002-01-02 Martin M. Hunt > > * library/debugwin.itb: Fix incorrect button names > so they will be enabled/disabled properly. > > Index: library/debugwin.itb > =================================================================== > RCS file: /cvs/src/src/gdb/gdbtk/library/debugwin.itb,v > retrieving revision 1.6 > diff -u -p -r1.6 debugwin.itb > --- debugwin.itb 2001/11/08 18:31:40 1.6 > +++ debugwin.itb 2002/01/03 21:06:37 > @@ -420,7 +420,7 @@ body DebugWinDOpts::_all {} { > #enable class buttons > set num 0 > foreach class $_classes { > - $itk_interior.f.classes.childsite.$num configure -state normal > + [$itk_interior.f.classes childsite].$num configure -state normal > incr num > } > } > @@ -430,7 +430,7 @@ body DebugWinDOpts::_all {} { > #enable class buttons > set num 0 > foreach class $_classes { > - $itk_interior.f.classes.childsite.$num configure -state normal > + [$itk_interior.f.classes childsite].$num configure -state normal > incr num > } > } > @@ -440,7 +440,7 @@ body DebugWinDOpts::_all {} { > # disable class buttons > set num 0 > foreach class $_classes { > - $itk_interior.f.classes.childsite.$num configure -state disabled > + [$itk_interior.f.classes childsite].$num configure -state disabled > incr num > } > } >