summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* TIP#119 implementation. [Patch 1611359]dkf2008-11-2210-660/+1922
|
* Fixed internationalization issues with the winDialog testspatthoyts2008-11-221-3/+4
|
* [Bug 2307837] avoid some locale-dependent failures by using id's or an ↵patthoyts2008-11-223-34/+76
| | | | english constraint
* Remove inoperative text stating that slave windows must bejenglish2008-11-192-2/+7
| | | | direct children of the master [Bug 1824996].
* remove unnoticed CVS conflict in ChangeLognijtmans2008-11-191-21/+0
|
* Minor simplification in fix for [Bug 2312027]:nijtmans2008-11-187-28/+54
| | | | | | | | no need to malloc and copy photo type name because it is a constant to begin with. Convert Tcl_SetResult(......, TCL_DYNAMIC) to Tcl_SetResult(......, TCL_VOLATILE), in preparation for TIP #340
* Widget self-destruction is not necessarily an error [Bug 2298720].jenglish2008-11-164-9/+21
|
* Explained constraints on [wm overrideredirect] better. [Bug 2282861]dkf2008-11-162-56/+69
|
* bug 2239034: restrict [wm manage] to Frame type widgetspatthoyts2008-11-158-24/+155
|
* autoheader-2.59das2008-11-141-0/+6
|
* remove -Wno-implicit-intdas2008-11-141-2/+2
|
* ttkWidget.c: Reworked widget construction and destruction sequence;jenglish2008-11-134-127/+177
| | | | | | | fixes [#2207435] and several other problems discovered during investigation of same. ttkButton.c(CheckbuttonInitialize): Account for initializeProc being called earlier in the construction sequence now.
* bug #1777362 - handle windows with funky names by avoiding use of thepatthoyts2008-11-123-42/+100
| | | | window path for anchors.
* Small syntactic improvementsdkf2008-11-121-18/+23
|
* fix [Bug 2265860] new test failuresnijtmans2008-11-122-2/+6
|
* Use -O2 as gcc optimization compiler flag, and getnijtmans2008-11-123-6/+16
| | | | rid of -Wno-implicit-int for UNIX
* modify Tk_Create(Old)ImageType signature, relaxingnijtmans2008-11-129-55/+118
| | | | | | | | | | the constraint that every Tk_ImageType can only be passed to this function once. This allows tkImg to be loaded in multiple interpreters in a thread-enabled build of Tk. This CONSTification complies with TIP #27. It is binary compatible with the old interface, but not fully source compatible (although tkImg does not suffer).
* 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
|