summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Don't crash when application uses nondefault visual [#2264732].jenglish2008-11-112-3/+7
|
* reverted change from 2008-11-06 (was under the impression thatnijtmans2008-11-113-2/+8
| | | | "-Wno-implicit-int" added an extra warning)
* Ttk widget initializeProc()s now return void instead ofjenglish2008-11-0912-52/+45
| | | | | a status code, and are no longer allowed to fail. (Fix for #2207435 in progress).
* One more (hopefully the last) signature changenijtmans2008-11-096-20/+23
| | | | in Tk_CreatePhotoImageFormat
* One more (hopefully the last) signature changenijtmans2008-11-097-18/+23
| | | | in Tk_CreateSmoothMethod.
* Remove unnecessary casts from ttkWidget.c.jenglish2008-11-092-15/+18
| | | | (More remain in other files; will get to those later).
* make all Tk_CustomOption tables const andnijtmans2008-11-099-61/+57
| | | | remove unnecessary type cast
* More small changes to use C89 better and manage the result more efficiently.dkf2008-11-0813-218/+187
|
* Lots of small changes to make code more pretty and C89-like.dkf2008-11-081-115/+110
|
* Lots of small changes to make code more pretty and C89-like.dkf2008-11-0836-553/+586
|
* add "-Wno-implicit-int" flag for gcc, as on UNIXnijtmans2008-11-064-4/+11
| | | | | Use tkUnixDefault.h under CygWin. With this change, at least the X11 version of Tk can be built with cygwin
* regendkf2008-11-061-3540/+4025
|
* Fix [Bug 2229999].dkf2008-11-062-13/+19
|
* no need to use CONST in internal header filesnijtmans2008-11-055-21/+23
|
* fix [Bug 1866774 ] Remove X10 references from docsnijtmans2008-11-053-4/+6
|
* CONSTify string and fileName parameters of TkGetBitmapDatanijtmans2008-11-057-61/+70
| | | | more internal -Wwrite-string warning fixes
* fix [Bug 2226093] const changes not all correctnijtmans2008-11-054-13/+25
| | | | more internal -Wwrite-string warning fixes
* bug #2218949: force focus to the tested widgetpatthoyts2008-11-031-2/+2
|
* tkWinTest.c: fix warning: assignment discards qualifiers from pointer target ↵nijtmans2008-11-032-3/+3
| | | | type
* ttkEntry.c: fix warning: unused variable 'currentValue'nijtmans2008-11-033-16/+21
| | | | tkOldTest.c: fix warning: assignment discards qualifiers from pointer target type
* Fixed broken test. testclipboard no longer returns binary data but proper ↵patthoyts2008-11-032-5/+25
| | | | tcl strings without \r
* Fixed an embedding test that became broken during the test upgrade. Killing ↵patthoyts2008-11-032-8/+10
| | | | a contained window should not destroy the container.
* busy tests: the default wait cursor on windows is wait not watch, so added ↵patthoyts2008-11-032-7/+63
| | | | suitable constraints and cloned some tests
* const fixes for windows codepatthoyts2008-11-032-13/+19
|
* Added cast to work around stupid type inference bug in MSVC. Apparently itdkf2008-11-031-2/+2
| | | | can't tell the difference between 'const char **' and 'char *const *'...
* Forgot to check this in due to local network woes.dkf2008-11-021-43/+52
|
* more internal -Wwrite-strings warning fixesnijtmans2008-11-028-58/+75
|
* Cleanup and document TK_MOVABLE_POINTSdkf2008-11-011-78/+167
|
* Implementation of TIP 97 - canvas imove and rchars methods.dkf2008-11-018-904/+1326
|
* Implemented the themed spinbox widget ttk::spinbox.patthoyts2008-11-0115-83/+933
|
* Minor formatting/usage correctiondkf2008-11-011-2/+3
|
* Temporary workaround for [Bug 2207435]jenglish2008-10-312-1/+6
|
* more internal -Wwrite-strings warning fixesnijtmans2008-10-3017-80/+91
|
* * tests/unixSelect.test: Revise the unixSelect-1.* tests so thatdgp2008-10-302-67/+49
| | | | | | | they test the ability of Tk's selection mechanism to faithfully pass valid Tcl values without corruption, and stop testing details of Tcl's internal encoding scheme. With this change, the Tk test suite no longer uses the identity encoding or [string bytelength].
* [Bug 2190619] Warnings due to Tk_SmoothMethodnijtmans2008-10-3010-83/+79
| | | | | | | | | | | | | | | | name constness change. Although dkf's solution (simply adding a type cast) is correct as well, changing the return value (as das suggested) has the advantage that all Tk_OptionPrintProc implementations don't need a type cast any more in its code. This makes all those functions robust against the -Wwrite-strings warning option. Further on, the customPtr field of Tk_ConfigSpec can be a constant, without any danger of source incompatibility.
* Remove incorrect 'const' qualifier.jenglish2008-10-292-7/+12
| | | | Remove useless 'register' declarations too, while we're at it.
* CONST updatedgp2008-10-291-2/+2
|
* formattingdgp2008-10-291-17/+17
|
* CONSTify TkPrintPadAmount, TkCreateFrame, TkCreateMainWindownijtmans2008-10-2820-97/+132
| | | | | and Tk_ParseArgv. move TkSelGetSelection to internal stub table (needed in tkWinTest.c)
* Expanded set of symbolic cursors.jenglish2008-10-287-37/+217
| | | | | Add correct platform-specific cursors for OSX [Bug 2054562] Use correct cursor for ttk::entry and ttk::combobox widgets [Bug 1534835]
* * win/tkWinTest.c: Revise [testclipboard] to form thatdgp2008-10-284-28/+23
| | | | | * tests/winClipboard.test: handles encodings. [Bug 2191960] * tests/constraints.tcl: [tcltest::bytestring] no longer used.
* Tweaking for better readability.dkf2008-10-272-71/+92
|
* Code style improvements, especially including making code less deeply nested.dkf2008-10-2710-1940/+2014
|
* Disable test ttk-6.3, it's not applicable [Bug 2175411].jenglish2008-10-243-16/+15
| | | | | | Use different Tcl_AssocData key for Ttk so the tile extension can be loaded into an 8.6 interp, in the off-chance that anyone wants to do this.
* Silence warning.dkf2008-10-242-4/+10
|
* * README: Bump version number to 8.6a4dgp2008-10-239-21/+33
| | | | | | | | | | | * generic/tk.h: * library/tk.tcl: * unix/configure.in: * unix/tk.spec: * win/configure.in: * unix/configure: autoconf-2.59 * win/configure:
* fix TkX11 builddas2008-10-231-2/+2
|
* Letting CONST die a slow and graceful death, since NO_CONST wasnijtmans2008-10-2212-896/+910
| | | | broken since 8.4 and no-one complained about it.
* add tkBusy.cdas2008-10-221-1/+7
|
* fix GenericEvent Tcl_Panic errordas2008-10-221-2/+2
|