OSDN Git Service

2001-11-05 Martin M. Hunt <hunt@redhat.com>
authorMartin Hunt <hunt@redhat.com>
Mon, 5 Nov 2001 19:15:17 +0000 (19:15 +0000)
committerMartin Hunt <hunt@redhat.com>
Mon, 5 Nov 2001 19:15:17 +0000 (19:15 +0000)
* library/stackwin.itb (StcakWin::reconfig): Destroy sbox
if it exists.

* library/process.itb (ProcessWin::reconfig): Destroy sbox
if it exists. This fixes reconfig failures on Windows. Also
destroy slbox.

* library/bpwin.itb (BpWin::reconfig): Destroy sbox if
it exists.This fixes reconfig failures on Windows. Also
destroy sf

* library/tdump.tcl (TdumpWin::reconfig): Delete sbox
and stext then rebuild window.

gdb/gdbtk/ChangeLog
gdb/gdbtk/library/bpwin.itb
gdb/gdbtk/library/process.itb
gdb/gdbtk/library/stackwin.itb
gdb/gdbtk/library/tdump.tcl

index 8fa5709..dc54ba2 100644 (file)
@@ -1,3 +1,19 @@
+2001-11-05  Martin M. Hunt  <hunt@redhat.com>
+
+       * library/stackwin.itb (StcakWin::reconfig): Destroy sbox 
+       if it exists.
+
+       * library/process.itb (ProcessWin::reconfig): Destroy sbox 
+       if it exists. This fixes reconfig failures on Windows. Also 
+       destroy slbox.
+
+       * library/bpwin.itb (BpWin::reconfig): Destroy sbox if 
+       it exists.This fixes reconfig failures on Windows. Also 
+       destroy sf
+       
+       * library/tdump.tcl (TdumpWin::reconfig): Delete sbox
+       and stext then rebuild window.
+
 2001-11-05  Martin M. Hunt  <hunt@redhat.com>  
 
        * library/debugwin.itb (DebugWin::build_win): 
index 56aa1ef..9045045 100644 (file)
@@ -698,6 +698,8 @@ body BpWin::toggle_threads {} {
 body BpWin::reconfig {} {
   if {[winfo exists $itk_interior.f]} { destroy $itk_interior.f }
   if {[winfo exists $itk_interior.m]} { destroy $itk_interior.m }
+  if {[winfo exists $itk_interior.sbox]} { destroy $itk_interior.sbox }
+  if {[winfo exists $itk_interior.sf]} { destroy $itk_interior.sf }
   if {[winfo exists $itk_interior.pop]} { destroy $itk_interior.pop }
   build_win
 }
index ce80d97..32e5ba5 100644 (file)
@@ -139,6 +139,8 @@ body ProcessWin::destructor {} {
 # ------------------------------------------------------------------
 body ProcessWin::reconfig {} {
   destroy $itk_interior.s
+  if {[winfo exists $itk_interior.sbox]} { destroy $itk_interior.sbox }
+  if {[winfo exists $itk_interior.slbox]} { destroy $itk_interior.slbox }
   build_win
 }
 
index f284382..e94c5d0 100644 (file)
@@ -134,6 +134,7 @@ body StackWin::change_frame {} {
 # ------------------------------------------------------------------
 body StackWin::reconfig {} {
   destroy $itk_interior.s
+  if {[winfo exists $itk_interior.sbox]} { destroy $itk_interior.sbox }
   build_win
 }
 
index bf3283f..60ef99f 100644 (file)
@@ -96,6 +96,9 @@ class TdumpWin {
   #  METHOD:  reconfig - used when preferences change
   # ------------------------------------------------------------------
   method reconfig {} {
+    if {[winfo exists $itk_interior.sbox]} { destroy $itk_interior.sbox }
+    if {[winfo exists $itk_interior.stext]} { destroy $itk_interior.stext }
+    build_win
   }
 }