summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhobbs <hobbs>2001-07-03 06:16:28 (GMT)
committerhobbs <hobbs>2001-07-03 06:16:28 (GMT)
commit828e491755404c0fc718cf5fe6b083f486a426a8 (patch)
tree6f767e8080d3e9fb5516e7fbfa819709b62cea99
parent41a1a2ac900531c2c44e34f1819991cd386ec7a3 (diff)
downloadtk-828e491755404c0fc718cf5fe6b083f486a426a8.zip
tk-828e491755404c0fc718cf5fe6b083f486a426a8.tar.gz
tk-828e491755404c0fc718cf5fe6b083f486a426a8.tar.bz2
see changes
-rw-r--r--ChangeLog25
1 files changed, 25 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 4fb3baf..5f220a1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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: