summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Geometry manager changes to support TIP#18.pspjuth2001-09-2615-67/+340
|
* * Corrected definition ofdgp2001-09-258-19/+77
| | | | | TkpScanWindowId to handle situation where types Window and int do not have the same number of bits. CONST-ified too.
* Update to handle change indgp2001-09-242-2/+9
| | | | | return type of Tcl_DStringAppend() from (char *) to (CONST char *). [TIP 27]
* Pack accepted asymmetric values for -ipadx/y.pspjuth2001-09-234-11/+51
| | | | Only -padx/y supports asymmetry. [Bug #462348]
* * win/tkWinWindow.c (TkpPrintWindowId, TkpScanWindowId): fixed tohobbs2001-09-211-5/+18
| | | | work on Win64 with 64bit XIDs.
* * generic/tkWindow.c (Tk_CreateAnonymousWindow):hobbs2001-09-213-6/+5
| | | | * generic/tkEntry.c (GetSpinboxElement): fixed unreachable returns.
* see ChangeLoghobbs2001-09-211-0/+36
|
* minor cast fixes to prevent 64bit warningshobbs2001-09-216-28/+29
|
* (TkGetServerInfo): added recognition of Win64hobbs2001-09-211-4/+10
|
* made XID __int64 type for Win64hobbs2001-09-211-0/+4
|
* * unix/tkUnixPort.h:hobbs2001-09-212-7/+9
| | | | | * mac/tkMacPort.h: add (int*) cast to TkpScanWindowId. These may need to be changed to Window* (ulong).
* (TkpScanWindowId): changed decl to usehobbs2001-09-213-8/+8
| | | | Window* instead of int*.
* correct Window id's to be of type Windowhobbs2001-09-212-8/+7
|
* * win/tkWinWm.c (WinSetIcon): fixed SetClassLong for 64bit support.hobbs2001-09-211-3/+19
|
* improved use of test constraintshobbs2001-09-218-820/+697
|
* * tests/textDisp.test (textDisp-4.12): corrected test to workhobbs2001-09-211-20/+3
| | | | properly on Windows.
* * tests/scrollbar.test (scrollbar-6.27): marked knownBug becausehobbs2001-09-211-2/+6
| | | | it is skewed by bad dimensions returned by Windows.
* * unix/configure: regen'edhobbs2001-09-203-120/+235
| | | | | * unix/tcl.m4: added --enable-64bit support for HP-11 with the 64-bit kernel.
* * Corrected type definition ofdgp2001-09-173-4/+12
| | | | | | argument passed to Tcl_GetStringFromObj() from size_t to int. Incorrect type broke [pack] and [grid] on systems where sizeof(size_t) != sizeof(int). [Bugs 462375, 462342, 462338]
* Fixed string/list confusion in directory browser, and a typo in ChangeLogdkf2001-09-173-16/+25
|
* * generic/tkImgGIF.c:andreas_kupries2001-09-145-5/+25
| | | | | | | | | * generic/tkImgPPM.c: * generic/tkImgPhoto.c: * generic/tkMenu.c: Applied patch [461578], provided by Vincent Darley. This fixes several memory leaks in the image code. They happen if there are errors during the initialization of the channel the image is supposed to be read from.
* * unix/configure:mdejong2001-09-123-28/+33
| | | | * unix/tcl.m4: Update from Tcl.
* Fix a problem in the Unix tk_getOpenFile dialog box. An error dialog box useddrh2001-09-121-0/+4
| | | | | to appear when you would point the file browser box at an empty directory and click on the canvas.
* Fix a problem in the Unix tk_getOpenFile dialog box. An error dialog box useddrh2001-09-121-1/+7
| | | | | to appear when you would point the file browser box at an empty directory and click on the canvas.
* * unix/configure:mdejong2001-09-103-106/+123
| | | | * unix/tcl.m4: Update from Tcl.
* * win/Makefile.in: Fix Windows Makefile so thatmdejong2001-09-102-2/+15
| | | | | tcltest will automatically be compiled if the user tries to build tktest.
* * win/Makefile.in: Use TKTEST variable directlymdejong2001-09-102-2/+7
| | | | instead of depending on the tktest alias.
* * win/mkd.bat:mdejong2001-09-083-46/+55
| | | | | | * win/rmd.bat: Apply binary property (cvs admin -kb) to files and convert to CRLF linefeed format to fix the VC++ build. [Tcl Bug #219409]
* fixed test numberinghobbs2001-09-011-2/+2
|
* see ChangeLoghobbs2001-08-301-0/+9
|
* corrected to use testConfig constraints inhobbs2001-08-303-162/+157
| | | | the TK_ALT_DISPLAY case
* * tests/unixSend.test: removed test file completely identical tohobbs2001-08-301-679/+0
| | | | | send.test. Removed platform specific named file in case somebody gets send working on Win/Mac in the future.
* * tests/config.test: added config-14.1 to test namespace importhobbs2001-08-2911-302/+177
| | | | | | | | | | | | | | evaluation of widgets. * generic/tkButton.c (ButtonCreate): * generic/tkFrame.c (CreateFrame): * generic/tkMenubutton.c (Tk_MenubuttonObjCmd): * generic/tkPlace.c (Tk_PlaceObjCmd): * generic/tkScale.c (Tk_ScaleObjCmd): * generic/tkMessage.c (Tk_MessageObjCmd): * generic/tkEntry.c (Tk_EntryObjCmd, Tk_SpinboxObjCmd): * generic/tkSquare.c (SquareObjCmd): redid the handling of optionTables in widgets to allow them to be imported into other namespaces. [Bug #456632]
* * win/tkWinDialog.c (ChooseDirectoryHookProc): work-around for MShobbs2001-08-282-24/+26
| | | | | bug that caused crashing in tk_chooseDirectory on Win95. [Bug #224936] (baker)
* * unix/tkUnixWm.c (TkWmRestackToplevel): reworked howhobbs2001-08-282-16/+27
| | | | | | | ConfigureNotify requests were handled in relation to the parent to avoid the problem with potential 'raise' delays on some wms. [Bug #220260] (baker) wms that were affected should notice the difference in tests unixWm-51.* not failing that failed before.
* * Corrected TIP 44 typodgp2001-08-272-2/+8
| | | | | that broke binding. Thanks to "Michal" for the fix. [Bug 455468]
* [#450020] Messages for czech languagebagnonm2001-08-241-0/+67
| | | | from http://web.telecom.cz/WoodPrint/cs.msg.gz
* added QNX-6 build support. [Bug #219410] (loverso)hobbs2001-08-233-106/+139
|
* removed bogus note about including tkPhoto.hhobbs2001-08-231-2/+1
|
* Fixed a bug where adjacent 'x' and '^' where not handled properly.pspjuth2001-08-223-6/+48
|
* * tests/dialog.test (HitReturn): fixed failing dialog-2.1 testhobbs2001-08-222-2/+9
| | | | because it wasn't always getting focus properly.
* generic/tkPack.c (TkParsePadAmount): added lint init for sepChar.hobbs2001-08-221-2/+2
|
* * tests/unixFont.test (unixFont-2.[234]): fixed to be morehobbs2001-08-222-5/+33
| | | | sensitive on systems that have more installed fonts.
* * library/dialog.tcl (tk_dialog): changed dialog to show bar onhobbs2001-08-221-3/+4
| | | | | Windows as well and added some y padding between the buttons and the bar. [Patch #442835] (harrismh)
* Objectified grid and pack commands.pspjuth2001-08-218-570/+613
|
* TkGetWindowFromObj was useless CPU waster; now caches window names *safely*dkf2001-08-214-17/+131
|
* Grid configure rejected initial "x" and "^". [Bug #418664]pspjuth2001-08-184-9/+35
|
* The selection highlighting of text objects in the canvas widgetdrh2001-08-171-4/+4
| | | | | | | was failing to include the last character of the selection. The "selection get" mechanism returned the right answer (so all the tests were passing) but the widget did not display correctly. This delta fixes the problem.
* Fixed a stupid error that's been in there for ages...dkf2001-08-172-6/+14
|
* * Labelled the TIP 44 changes as "POTENTIAL INCOMPATIBILITY".dgp2001-08-152-1/+9
| | | | | | Although technically internal changes are not incompatible, they'll be perceived as such by those who get bitten, and this will help them find the cause of their trouble.