From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17185 invoked by alias); 7 Dec 2001 21:18:38 -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 17161 invoked from network); 7 Dec 2001 21:18:36 -0000 X-Authentication-Warning: makita.cygnus.com: keiths owned process doing -bs Date: Thu, 11 Oct 2001 07:35:00 -0000 From: Keith Seitz To: Insight Maling List Subject: [PATCH] Don't save plugins Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-SW-Source: 2001-q4/txt/msg00107.txt.bz2 Hi, We cannot properly re-open plugins if we quit with them open, so until that is fixed, don't save any plugins into the active window list. Keith ChangeLog 2001-12-07 Keith Seitz * library/managedwin.itb (shutdown): Don't save geometry for plugins, either. Patch Index: library/managedwin.itb =================================================================== RCS file: /cvs/src/src/gdb/gdbtk/library/managedwin.itb,v retrieving revision 1.20 diff -u -p -r1.20 managedwin.itb --- managedwin.itb 2001/11/08 18:31:40 1.20 +++ managedwin.itb 2001/12/07 21:17:26 @@ -116,7 +116,7 @@ body ManagedWin::shutdown {} { set activeWins {} foreach win [itcl_info objects -isa ManagedWin] { if {![$win isa ModalDialog] && ![$win isa DebugWin] && - ![$win isa DebugWinDOpts]} { + ![$win isa DebugWinDOpts] && ![$win isa PluginWindow]} { set g [wm geometry [winfo toplevel [namespace tail $win]]] pref setd gdb/geometry/[namespace tail $win] $g lappend activeWins [$win pickle] From mboxrd@z Thu Jan 1 00:00:00 1970 From: Keith Seitz To: Insight Maling List Subject: [PATCH] Don't save plugins Date: Fri, 07 Dec 2001 13:18:00 -0000 Message-ID: X-SW-Source: 2001-q4/msg00408.html Message-ID: <20011207131800.xfi3gKsyxZ983vo3ZoNkOLt4ZgcgxEbAV_shfAE72C0@z> Hi, We cannot properly re-open plugins if we quit with them open, so until that is fixed, don't save any plugins into the active window list. Keith ChangeLog 2001-12-07 Keith Seitz * library/managedwin.itb (shutdown): Don't save geometry for plugins, either. Patch Index: library/managedwin.itb =================================================================== RCS file: /cvs/src/src/gdb/gdbtk/library/managedwin.itb,v retrieving revision 1.20 diff -u -p -r1.20 managedwin.itb --- managedwin.itb 2001/11/08 18:31:40 1.20 +++ managedwin.itb 2001/12/07 21:17:26 @@ -116,7 +116,7 @@ body ManagedWin::shutdown {} { set activeWins {} foreach win [itcl_info objects -isa ManagedWin] { if {![$win isa ModalDialog] && ![$win isa DebugWin] && - ![$win isa DebugWinDOpts]} { + ![$win isa DebugWinDOpts] && ![$win isa PluginWindow]} { set g [wm geometry [winfo toplevel [namespace tail $win]]] pref setd gdb/geometry/[namespace tail $win] $g lappend activeWins [$win pickle]