diff options
author | hobbs <hobbs> | 2001-07-03 06:16:28 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2001-07-03 06:16:28 (GMT) |
commit | 828e491755404c0fc718cf5fe6b083f486a426a8 (patch) | |
tree | 6f767e8080d3e9fb5516e7fbfa819709b62cea99 | |
parent | 41a1a2ac900531c2c44e34f1819991cd386ec7a3 (diff) | |
download | tk-828e491755404c0fc718cf5fe6b083f486a426a8.zip tk-828e491755404c0fc718cf5fe6b083f486a426a8.tar.gz tk-828e491755404c0fc718cf5fe6b083f486a426a8.tar.bz2 |
see changes
-rw-r--r-- | ChangeLog | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -1,5 +1,30 @@ 2001-07-02 Jeff Hobbs <jeffh@ActiveState.com> + * generic/tkWindow.c (Tk_DestroyWindow): changed to use + Tcl_EventuallyFree instead of ckfree so that widgets that have + references to a tkwin can use them. + + * generic/tkCanvArc.c: + * generic/tkCanvBmap.c: + * generic/tkCanvLine.c: + * generic/tkCanvPoly.c: + * generic/tkCanvText.c: + * generic/tkCanvWind.c: + * generic/tkRectOval.c: corrected argument handling in + Create<Item> functions that could lead to ABRs or FMRs and + corrected names of argc/argv to objc/objv. + + * generic/tkImgGIF.c (Mgetc): corrected screwy use of ternary + operator and possible FMR. + + * generic/tkEntry.c: corrected missing Tcl_Release that caused + font not freed complaints when trying valid cleanup calls. + * generic/tkListbox.c: made use of Tcl_Preserve/Tcl_Release to + prevent FMR errors in Display functions. + + * unix/tkUnixScale.c (TkpDisplayScale): corrected FMR when scale + was deleted while calling its command. + * library/console.tcl: * library/entry.tcl: * library/spinbox.tcl: |