summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* More doc fixes from Mikhail Kolesnitchenkodkf2004-09-011-0/+5
|
* TIP#165 (user data field) implementation.dkf2004-08-291-0/+12
|
* * library/text.tcl (::tk::TextTranspose): Ensure that Transpose ishobbs2004-08-261-0/+5
| | | | an atomic op to undo.
* * macosx/tkMacOSXWm.c: Made use of Tcl_WrongNumArgs in a fewdgp2004-08-251-0/+5
| | | | * win/tkWinMenu.c: appropriate spots.
* More doc fixes from Mikhail Kolesnitchenko. [Patch 1013520]dkf2004-08-221-0/+7
|
* More doc fixes. [Patch 1012837]dkf2004-08-201-0/+3
|
* Spelling and grammar fixes from Mikhail Kolesnitchenko. [Patch 1012083]dkf2004-08-201-0/+4
|
* D'oh! Fix [Bug 1012331]dkf2004-08-201-0/+5
|
* * win/tkWinDialog.c (Tk_MessageBoxObjCmd): Inherit the icon fromhobbs2004-08-201-0/+6
| | | | | * win/tkWinInt.h: the -parent window for * win/tkWinWm.c (TkWinGetIcon): the MessageBox.
* Cast argument 7 of XChangeProperty to 'const unsigned char *'jenglish2004-08-191-0/+6
| | | | | (from 'const char *') to satisfy Solaris 8 Forte C compiler [Bug #1012325]
* * tests/safe.test (safe-1.3): Made test less sensitve to thedgp2004-08-191-0/+10
| | | | | | | | | full set of existing aliases in an interp, so the it only tests whether the tested ones are present. * unix/Makefile.in: Copied LD_LIBRARY_PATH machinery from `make shell` target to other similar targets so that just built libraries are tested, rather than previous installations.
* TIP#168 implementation. Based on [Patch 886240]dkf2004-08-191-0/+15
|
* Add missing GEOMETRY flag to -handlepad option. [Bug 1010938]dkf2004-08-181-0/+5
|
* Doc patches [1010083] and [1010607] from Mikhail Kolesnitschenko.dkf2004-08-171-0/+9
| | | | Also some general fixes to menu.n and text.n
* Standardize the -compound option to everywhere it ought to be. [Bug 712588]dkf2004-08-161-0/+5
|
* Spelling and grammar fixesdkf2004-08-161-0/+5
|
* More fixing of [Bug 987169] and simple support for [FRQ 979101]dkf2004-08-111-0/+8
|
* Fix for #1006686 "wm resizable command not working on Solaris/CDE"jenglish2004-08-101-0/+5
| | | | (patch from Colin McDonald).
* * tests/canvText.test:mdejong2004-08-091-0/+10
| | | | | | | | | * win/tkWinFont.c (Tk_MeasureChars): Fix for text wrapping problem that appeared using canvas text under Win32. A long wrapping string that had leading spaces was being incorrectly wrapped. This change makes the Win32 implementation behave the same as the Unix implementation. [Patch 1006286]
* Fix [Bug 987169] for tk_messageBox and tk_chooseColordkf2004-08-051-0/+7
|
* Clarify code that does pixel compositing. Fix alpha blending in [$photo put]...dkf2004-08-041-0/+9
|
* Whitespace policing...dkf2004-08-021-5/+5
|
* * unix/configure:das2004-07-301-0/+6
| | | | | * unix/tcl.m4 (SC_CONFIG_CFLAGS): Darwin: instead of setting PLAT_OBJS to explict object files in tcl.m4, refer to MAC_OSX_OBJS makefile var.
* TkQueueEventForAllChildren additiongeorgeps2004-07-291-0/+5
|
* * generic/tkImgGIF.c (FileReadGIF): fix crash reported by Reinhard Max:das2004-07-271-0/+6
| | | | | in case of premature end of image data, return error instead of passing nil buffer to Tk_PhotoPutBlock().
* * library/tkfbox.tcl (::tk::dialog::file::Update): use -directoryhobbs2004-07-221-5/+12
| | | | | | [pwd] (instead of .) to get around some VFS edge case bugs. Correct args passes to tk_messageBox when failing to cd. Add -force back to namespace import of msgcat.
* * generic/tkEvent.c (InvokeInputMethods): ensure IC focus is sethobbs2004-07-211-0/+5
| | | | after creation. [Bug #905830]
* * macosx/Makefile: added support to tk framework build todas2004-07-201-0/+12
| | | | | | | | | | | | | optionally install tk manpages in addition to html help, similarly to tcl/macosx/Makefile. * macosx/Wish.pbproj/project.pbxproj: fixes for building with non-default SYMROOT/OBJROOT/SRCROOT, added support for using a Tcl.framework in DYLIB_INSTALL_PATH != /Library/Frameworks, added optional support for building html help without tcl sources present by giving explicit location of tcltk-man2html script. * macosx/tkMacOSXMenu.c: fixed #include case sensitivity bug.
* * unix/Makefile.in:das2004-07-201-0/+6
| | | | | * win/Makefile.in: added 'install-private-headers' makefile target to allow optionally installing private tk headers. [Tcl FR 922727]
* * unix/Makefile.in, unix/tcl.m4: move (C|LD)FLAGS after theirhobbs2004-07-161-0/+12
| | | | | | | | | | | * unix/configure.in, unix/configure: _DEFAULT to allow for env setting to override m4 switches. Consolidate header checks to limit redundancy in configure. (CFLAGS_WARNING): Remove -Wconversion (SC_ENABLE_THREADS): Set m4 to force threaded build when built against a threaded Tcl core. Reorder configure.in for better 64-bit build configuration, replacing EXTRA_CFLAGS with CFLAGS. [Bug #874058]
* 2004-07-14 Jim Ingham <jingham@apple.com>wolfsuit2004-07-151-0/+8
| | | | | | | | * macosx/tkMacOSXCursor.c (TkpSetCursor): The code to not reset the cursor more often than necessary was getting fooled when the current cursor was nulled out when the current cursor gets freed. So in the case where the input cursor was NULL, we have to just always set it. [Bug #894550]
* * library/tkfbox.tcl: Corrected coding errors in most recent change.dgp2004-07-151-0/+5
| | | | Use [bind $w], not [$w configure] to modify bindings.
* Users can cause Unix file dialog to vanish early; treat like Cancel [Bug 987169]dkf2004-07-111-0/+5
|
* Added paragraph about the canvas origin [Bug 956681]dkf2004-07-071-0/+5
|
* updated w/ info on the generic/tkEvent.c change.georgeps2004-07-061-0/+6
|
* TIP#158 implementation; keypad keys on Win are now distinguishable.dkf2004-07-051-0/+10
|
* Set _NET_WM_NAME and _NET_WM_ICON_NAME (freedesktop.org)jenglish2004-07-051-0/+8
| | | | | | | in addition to WM_NAME and WM_ICON_NAME (ICCCM). This allows the full Unicode character set to be used in window manager strings (but only for newer WMs that support the EWMH spec). [Tk Bug #959973]
* I added a note about the tkEvent.c refactoring and buf fixes.georgeps2004-07-021-0/+12
|
* Doc fixes. [Tcl Bug 983146]dkf2004-07-011-0/+4
|
* TIP#153 implementation from Neil McKay, with thanks!dkf2004-06-301-0/+9
|
* * generic/tkCmds.c (Tk_WinfoObjCmd): refetch interp result obj forhobbs2004-06-291-0/+5
| | | | 'winfo id' as it can change when making the window exist.
* Fix for [Bug 756840]Joe Mistachkin2004-06-261-0/+8
|
* Use standard constraint namesdkf2004-06-241-0/+4
|
* * unix/tcl.m4: autoconf 2.5 fixes in Darwin section.das2004-06-181-0/+5
| | | | * unix/configure: autoconf-2.57
* Steps towards systematization of test constraints in Tk test suitedkf2004-06-171-0/+6
|
* Fix for #742882 "Potential division by zero in gridded wm geometry"jenglish2004-06-161-0/+6
|
* win/tkWinButton.c: Add a 3D highlight to disabled *buttons anda_kovalenko2004-06-161-0/+5
| | | | labels, the same way as it's now done for disabled menu entries.
* Enhanced doc in manner inspired by [RFE 803060]dkf2004-06-151-0/+3
|
* Fixed tests which mandated (minor) brokenness.dkf2004-06-151-0/+3
|
* Balance braces, factorize out much #ifdef code and use objects a bit moredkf2004-06-151-0/+4
|