Use uniform add_foo/delete_foo names. Add delete_list. Pack lists
authorsls <sls>
Fri, 10 Feb 1995 11:25:12 +0000 (11:25 +0000)
committersls <sls>
Fri, 10 Feb 1995 11:25:12 +0000 (11:25 +0000)
with -fill both.  Bump version to 5.0.2.

tkinspect.tcl

index d2560fa42ff450075ef79540d94239e29a25afcb..c0576e9fa8708810191df02b355e774f1194354c 100644 (file)
@@ -5,8 +5,8 @@
 
 set tkinspect(counter) -1
 set tkinspect(main_window_count) 0
-set tkinspect(release) 5.0.1
-set tkinspect(release_date) "Feb 7, 1995"
+set tkinspect(release) 5.0.2
+set tkinspect(release_date) "Feb 10, 1995"
 set tkinspect(list_classes) "procs_list globals_list windows_list"
 
 wm withdraw .
@@ -169,7 +169,11 @@ dialog tkinspect_main {
        lappend slot(lists) $list
        $list_class $list -command "$self select_list_item $list" \
            -main $self
-       pack $list -side left -fill y -expand 1
+       pack $list -side left -fill both -expand 1
+    }
+    method delete_list {list} {
+       set ndx [lsearch -exact $slot(lists) $list]
+       set slot(lists) [lreplace $slot(lists) $ndx $ndx]
     }
     method add_menu {name} {
        set w $self.menu.[string tolower $name]
@@ -178,7 +182,7 @@ dialog tkinspect_main {
        menu $w.m
        return $w.m
     }
-    method destroy_menu {name} {
+    method delete_menu {name} {
        set w $self.menu.[string tolower $name]
        pack forget $w
        destroy $w