+Thu Mar 20 10:01:59 2003 Pat Thoyts <patthoyts@users.sourceforge.net>
+
+ * windows_list.tcl: Applied patch from bug #684608 by Achim Bursian
+ for garbled bindings display in the window view.
+
Mon Oct 21 22:42:34 2002 Pat Thoyts <patthoyts@users.sourceforge.net>
* afters_list.tcl:
set result "# packing info for slaves of [list $window]\n"
foreach slave [send $target [list ::pack slaves $window]] {
$self format_packing_info result $slave \
- [send $target [list pack info $slave]]
+ [send $target [list ::pack info $slave]]
}
return $result
}
set result "# bindtags of [list $window]\n"
set tags [send $target [list ::bindtags $window]]
append result [list bindtags $window $tags]
- append result "\n# bindings (in bindtag order)..."
+ append result "\n\n# bindings (in bindtag order)..."
foreach tag $tags {
foreach sequence [send $target [list ::bind $tag]] {
append result "\nbind $tag $sequence "
- lappend result [send $target [list bind $tag $sequence]]
+ append result [list [send $target [list ::bind $tag $sequence]]]
}
}
append result "\n"
set result "# bindings of [list $window]"
foreach sequence [send $target [list ::bind $window]] {
append result "\nbind $window $sequence "
- lappend result [send $target [list ::bind $window $sequence]]
+ append result [list [send $target [list ::bind $window $sequence]]]
}
append result "\n"
return $result
set result "# class bindings for $window\n# class: $class"
foreach sequence [send $target [list ::bind $class]] {
append result "\nbind $class $sequence "
- lappend result [send $target [list ::bind $class $sequence]]
+ append result [list [send $target [list ::bind $class $sequence]]]
}
append result "\n"
return $result