summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* Applied companion patch for Tcl Patch 585105,dgp2002-08-051-0/+105
| | | | | | | | | | | | | | | | | | | | | updating Tk to use Tcl 8.4's fully CONST-ified interface, and fully CONSTifying Tk at the same time. This patch includes purging Tk of its last direct access to interp->result. [Bug 589853] The substantial changes include copying event sequence strings into Tcl_DStrings in tkBind.c, and copying [text] indices into Tcl_DStrings because parsing them involved overwriting them. If this causes performance trouble, that can be resolved by further converting them to Tcl_Obj's. The #defines USE_NON_CONST and USE_COMPAT_CONST have the same effect for Tk as they do for Tcl. (They actually change tcl.h)
* Stopped a potential core dump from happening when a idle event outlives its ↵dkf2002-08-021-0/+6
| | | | clientdata.
* Postpone paned-window layout arrangement on geometry event until idle,dkf2002-07-311-0/+10
| | | | | | | as is done in other window managers, to fix problems with size calculations when the children don't already know their sizes anyway. Now the layout of the vertical pane demo works better (overall initial window width is right!)
* * unix/configure: Regen.mdejong2002-07-291-0/+8
| | | | | | | * unix/configure.in: Remove code that was setting CC_SEARCH_FLAGS and LD_SEARCH_FLAGS to try to account for cc vs ld linking. Tcl now handles this. * unix/tcl.m4: Update from Tcl.
* * unix/Makefile.in: Add MAJOR_VERSION, MINOR_VERSION,mdejong2002-07-281-0/+20
| | | | | | | | | | | | | | | | | | | PATCH_LEVEL, INSTALL_LIBRARY, STUB_LIB_FILE, and LIB_FILE to support changes in tcl.m4 related to library builds. Use MAKE_LIB macro to avoid dealing with RANLIB issues. Rename TK_CC_SEARCH_FLAGS to CC_SEARCH_FLAGS and rename TK_LD_SEARCH_FLAGS to LD_SEARCH_FLAGS. Use new INSTALL_LIB and INSTALL_STUB_LIB substs to deal with ranlib issues when install libraries. * unix/configure: Regen. * unix/configure.in: Remove AC_PROG_RANLIB since this is done by tcl.m4 now. Define CC_SEARCH_FLAGS instead of TK_CC_SEARCH_FLAGS and so on. Use MAKE_LIB and MAKE_STUB_LIB from tcl.m4. Remove AC_SUBST calls that are no done in tcl.m4. * unix/tcl.m4: Update from Tcl. * unix/tkConfig.sh.in: Subst CC_SEARCH_FLAGS and LD_SEARCH_FLAGS.
* Objectifed wm. [Patch #564521]pspjuth2002-07-251-0/+13
|
* * tests/spinbox.test: added spinbox-22.[1-3]hobbs2002-07-251-0/+5
| | | | | | * generic/tkEntry.c (ConfigureEntry): made the textvariable value take precedence over changed -from/-to values, unless it must be constrained. [Bug #559078]
* * library/spinbox.tcl (MouseSelect): when not in the entry, justhobbs2002-07-251-0/+4
| | | | | return instead of invoking - ButtonUp handles invoking already. [Bug #499168]
* * library/tk.tcl (RestoreFocusGrab): handle the case where thehobbs2002-07-251-0/+5
| | | | FocusGrab info is not set. [Bug #553283]
* see changeloghobbs2002-07-241-0/+21
|
* * unix/configure: Regen.mdejong2002-07-231-0/+5
| | | | * unix/tcl.m4: Update from Tcl.
* removed invalid ChangeLog entrymdejong2002-07-231-15/+0
|
* * library/choosedir.tcl (tk::dialog::file::chooseDir):mdejong2002-07-221-0/+26
| | | | | | | | | | * library/clrpick.tcl (tk::dialog::file::chooseDir): * library/msgbox.tcl (tk::MessageBox): * library/tkfbox.tcl (tk::dialog::file): * library/xmfbox.tcl (tk::MotifFDialog): Revert [Tk patch 568278]. The transient window workaround is no longer needed since the fix for [Tk bug 570764] solved the problem for withdrawn transients.
* * unix/configure:mdejong2002-07-191-0/+10
| | | | | | | | | * unix/configure.in: * win/configure: * win/configure.in: Add AC_PREREQ(2.13) in an attempt to make it more clear that the configure scripts must be generated with autoconf version 2.13. [Tcl Bug 583573]
* Fix a bug in the Postscript encoding vector generator that was causingdrh2002-07-191-0/+5
| | | | postscript generation to fail under Win2K.
* * unix/tkUnixSend.c: Using Tcl_GetTime instead of TclpGetTime.rmax2002-07-181-0/+4
|
* * library/unsupported.tcl: Extended ExposePrivateVariable, andrmax2002-07-171-0/+5
| | | | ExposePrivateCommand to accept patterns as well.
* logdgp2002-07-171-0/+5
|
* * generic/tkFont.c (TkFontPkgFree): Call panic insteadmdejong2002-07-161-0/+6
| | | | | of assert since assert is not used in the rest of Tk. [Tk bug 579651]
* * unix/Makefile.in:mdejong2002-07-161-0/+6
| | | | | * win/Makefile.in: Add a more descriptive warning in the event `make genstubs` needs to be rerun.
* ChangeLog policemdejong2002-07-161-4/+5
|
* WinWm fixesvincentdarley2002-07-161-0/+7
|
* no messagedavygrvy2002-07-161-0/+5
|
* * Some tests needed "unix" constraint.dgp2002-07-151-1/+1
|
* * Fixes for [Bug 581627].dgp2002-07-151-1/+9
| | | | | | | | * generic/tkTest.c: Test commands not supported on non-Unix platforms should not be defined there in the first place. * tests/constraints.tcl: Fixed "secureserver" constraint. * tests/unixWm.test: Some tests needed "unix" constraint. * win/tkWinWm.c: Typo in error message.
* * tests/event.test: Fixes to enable testing of only userInteractiondgp2002-07-141-0/+3
| | | | * tests/visual_bb.test: tests.
* * Bumped HEAD to version 8.4b2 in order to distinguish it fromdgp2002-07-141-0/+6
| | | | | the 8.4b1 release. Also extended LOCALES to cover all message catalogs.
* * tests/focustTcl.test: Conversion bug: Corrected backwards logic.dgp2002-07-141-1/+4
| | | | * tests/imgPhoto.test: Conversion bug: overwrote unix/README.
* * Completed conversion of Tk test suite to use tcltest.dgp2002-07-141-0/+7
|
* * Converted more files to tcltest and factored out common code.dgp2002-07-131-1/+1
|
* * Converted more files to tcltest and factored out common code.dgp2002-07-131-0/+5
|
* * Converted several files in the test suite for testing bydgp2002-07-131-1/+1
| | | | tcltest 2.1.
* * Converted several files in the Tk test suite for testing bydgp2002-07-121-2/+2
| | | | tcltest 2.1.
* * Converted several files in the Tk test suite for testing bydgp2002-07-121-0/+7
| | | | tcltest 2.1.
* * win/tkWinDialog.c (Tk_ChooseDirectoryObjCmd): initializehobbs2002-07-111-0/+6
| | | | | utfTitle to NULL, add a few more notes about limitations of possible new Tk_ChooseDirectoryObjCmd function.
* tests/visual_vv.test: Removed some dependence on [exec]ed utilitiesdkf2002-07-111-0/+14
| | | | | | generic/tkImgPhoto.c: Allowed photo image buffer allocation to fail more tests/imgPhoto.test: gracefully in some cicumstances. The remaining ones require API changes before they can fail nicely.
* * generic/tkTest.c: Removed unused dependence on TclThread_Init()dgp2002-07-091-0/+5
| | | | * tests/defs.tcl: and [testthread]. [Bug 578165, Tcl Bug 531413]
* no messagedavygrvy2002-07-081-0/+5
|
* updated for 8.4b1 releasecore_8_4_b1hobbs2002-07-051-0/+4
|
* Improvements to bgerror dialog layout. [Bug #577086]dkf2002-07-041-0/+9
|
* Updated to latest tcl.m4 from Tcl.dgp2002-07-011-0/+5
|
* Force the message box to have consistent background colours. [Bug#552515]dkf2002-06-281-0/+5
|
* * win/Makefile.in (install-binaries): Fix of troubled Makefileandreas_kupries2002-06-271-0/+6
| | | | | quoting introduced by [Patch 521356] causing the installed to fail.
* * (Tk_DrawChars) silence compiler warning.dgp2002-06-261-0/+4
|
* * generic/tkStyle.c: <eol> of the committing cvs client didn'tdavygrvy2002-06-261-0/+6
| | | | | match the <eol> of the file itself. Windows users where getting \r\r\n. Problem fixed.
* Fixed potential buffer overflow from patch#546910a_kovalenko2002-06-261-0/+7
|
* Updated font.test to expect new behavior of canvas postscript (patch #546910)a_kovalenko2002-06-261-0/+5
|
* * Expanded install-binaries target to create and install adgp2002-06-261-0/+6
| | | | pkgIndex.tcl file to enable Tk as a loadable package [Patch 521356]
* * unix/tcl.m4: New macro SC_CONFIG_MANPAGES.rmax2002-06-251-0/+10
| | | | | | | | | | | * unix/configure.in: Added support for symlinks and compression * unix/Makefile.in: when installing the manpages. [Patch 518052] Default is still hardlinks and no compression. * unix/mkLinks: generated * unix/configure: * unix/README: Added documentation for the new features.
* Applied patch #546910 -- international postscript outputa_kovalenko2002-06-251-0/+13
|