summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordas <das>2007-06-23 00:27:11 (GMT)
committerdas <das>2007-06-23 00:27:11 (GMT)
commit906337cc23867860eddecd0d9e875e45102df910 (patch)
treedf8d962896295bf1a5005e6a885df65adf629b04 /ChangeLog
parent38d17f35a89f5fafcba83303e7e244fe0f23967c (diff)
downloadtk-906337cc23867860eddecd0d9e875e45102df910.zip
tk-906337cc23867860eddecd0d9e875e45102df910.tar.gz
tk-906337cc23867860eddecd0d9e875e45102df910.tar.bz2
* macosx/tkMacOSXXStubs.c (XCreateImage, DestroyImage): correct XImage
bytes_per_line/bitmap_pad calculations and endianness setting; free image data and XImage structure at destruction; formatting cleanup. * macosx/tkMacOSXDialog.c (NavServicesGetFile): disable app-modal sheet variant of nav dialog on OS versions where it causes problems.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog18
1 files changed, 17 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 21aafb8..0ab17b7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,19 @@
+2007-06-23 Daniel Steffen <das@users.sourceforge.net>
+
+ * generic/tkImgPhoto.c (ImgPhotoConfigureInstance, DisposeInstance):
+ use XDestroyImage instead of XFree to destroy XImage; replace runtime
+ endianness determination by compile-time check for WORDS_BIGENDIAN.
+
+ * xlib/ximage.c (XCreateBitmapFromData): use XCreateImage and
+ XDestroyImage instead of creating XImage structure manually.
+
+ * macosx/tkMacOSXXStubs.c (XCreateImage, DestroyImage): correct XImage
+ bytes_per_line/bitmap_pad calculations and endianness setting; free
+ image data and XImage structure at destruction; formatting cleanup.
+
+ * macosx/tkMacOSXDialog.c (NavServicesGetFile): disable app-modal
+ sheet variant of nav dialog on OS versions where it causes problems.
+
2007-06-09 Jeff Hobbs <jeffh@ActiveState.com>
* win/tkWinWm.c (WmIconphotoCmd): fix wm iconphoto RGBA issues.
@@ -5,7 +21,7 @@
* win/tkWinMenu.c (TkWinHandleMenuEvent): improve handling to
allow for unicode char menu indices and not use CharUpper on Tcl
- utf strings. [Bug #1734223]
+ utf strings. [Bug 1734223]
2007-06-09 Daniel Steffen <das@users.sourceforge.net>