summaryrefslogtreecommitdiffstats
path: root/generic
Commit message (Collapse)AuthorAgeFilesLines
* Remove casts from uses of ckalloc/ckfree/... now that Tcl declares them to bedkf2011-03-1273-821/+754
| | | using useful casts internally.
* Eliminate some unneeded write-only variables (discovered by gcc-4.6)jan.nijtmans2011-03-113-6/+3
|\
| * Eliminate some unneeded write-only variables (discovered by gcc-4.6)jan.nijtmans2011-03-113-6/+3
| |
| * [Patch #3129527]: Fix buffer overflow w/ GCC 4.5 and -D_FORTIFY_SOURCE=2.nijtmans2011-01-251-2/+2
| | | | | | | | Just the strcpy->memcpy part, to prevent anything like [Bug #3164879]
| * ttk::combobox: Add missing 'validate' command (reported by schelte).jenglish2011-01-221-1/+2
| |
| * Make sure to use CONST/VOID in stead ofnijtmans2011-01-191-12/+12
| | | | | | | | | | | | const/void when appropriate. This allows to use const/void in the *.decls file always, genStubs will do the right thing.
| * Make sure to use CONST/VOID in stead ofnijtmans2011-01-192-23/+42
| | | | | | | | | | | | const/void when appropriate. This allows to use const/void in the *.decls file always, genStubs will do the right thing.
| * Cast some NULLs to (void *) in order to quash "missing sentinel in function ↵stwo2011-01-061-4/+4
| | | | | | | | call" compiler warnings.
| * Fix crash in 'tag add' / 'tag remove' when no -tags specified [SF#3085489].jenglish2010-10-111-4/+4
| |
| * TreeviewSeeCommand: Schedule redisplay if [$tv see] opens any items [#2829363]jenglish2010-09-081-1/+2
| |
| * * generic/tkText.c (DumpLine): s/segPtr->size/currentSize/hobbs2010-08-271-6/+6
| | | | | | | | | | throughout, but particularly in if lineChanged block where segPtr may no longer be valid. [Bug 3053347]
| * Major backport of 8.6 Ttk for 8.5.9. Most changes were only beinghobbs2010-08-2635-1602/+2117
| | | | | | | | | | | | | | | | | | | | | | | | | | | | committed to head (8.6), although they could apply for 8.5 as well. This re-sync makes future work easier to maintain and adds some useful work for 8.5 users. Notable changes: - Lots of code cleanup - Some bug fixes never backported - Addition of ttk::spinbox - minor color changes - Improved Vista/7 styling - Move to tile version 0.8.6 (pseudo-package) - ABI and API compatible (even $w identify) - minor new features (extended $w identify)
| * * generic/tkCanvLine.c (LineDeleteCoords): [Bug 2900121]: Backport ofdkf2010-08-111-23/+34
| | | | | | | | fix to sense of test.
| * * generic/tk.h: Bump to 8.5.9 for release.dgp2010-08-041-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | * library/tk.tcl: * unix/configure.in: * unix/tk.spec: * win/configure.in: * README: * unix/configure: autoconf-2.59 * win/configure: * changes: Updated for 8.5.9 release.
| * Tk_CreateBinding: Silently ignore empty binding scripts (Fixes [Bug 3006842]).jenglish2010-05-312-21/+30
| | | | | | | | ttkTreeview.c: [$tv tag bind $tag <...> {}] now removes binding.
| * Fix CYGWIN warning: "fd_set and assiciated.macros have been defined in ↵nijtmans2010-05-311-9/+1
| | | | | | | | sys/types. This may cause runtime problems with W32"
| * [Bug 2956548] TkpButtonSetDefaults only initializes one button typenijtmans2010-03-122-6/+9
| | | | | | | | | | Fix various gcc warnings, all backported from Tk 8.6 VC6++ does not have SPI_SETKEYBOARDCUES
| * * generic/tkText.c (DumpLine): [Bug 2968379]: When peers are about,dkf2010-03-111-5/+10
| | | | | | | | | | | | there can be unnamed marks present during a dump. Ignore them as they will just be for the peers' insert and current marks, which aren't very important.
| * Refix [Bug 1799782].dkf2010-02-211-3/+12
| |
| * generic/tkMenu.c: Defer TkMenuOptionTables cleanup to CallWhenDeleted() time,jenglish2010-02-171-4/+5
| | | | | | | | | | to ensure that the record doesn't get freed until after all widget instance commands have been deleted (Fixes [Bug#2952745]).
| * Backport various formatting (spacing)nijtmans2010-02-0710-1935/+1887
| | | | | | | | | | | | | | changes from HEAD, so diffing between 8.5.x and 8.6 shows the real structural differences again. (any signature change not backported!)
| * Fix various gcc-4.4 warnings and formatting, allnijtmans2010-01-294-202/+185
| | | | | | | | backported from HEAD.
| * [Bug 2931374]: Stop overflow of working buffer during construction of longdkf2010-01-191-2/+6
| | | | | | | | tag expressions.
| * Apply patch [#2932808]: Canvas itemsnijtmans2010-01-181-1/+23
| | | | | | | | not updating on widget state change
| * [Bug 2677890]: Fix odd text widget update problem that had scrollbars beingdkf2010-01-071-3/+4
| | | | | | | | unable to cover the whole widget. Fix is to reify the range to update sooner.
| * Trivial CYGWIN fixes (backported from trunk)nijtmans2010-01-062-4/+4
| |
| * [Bug 220950]: Don't delete the last menu entry when it is obvious that is notdkf2010-01-051-2/+13
| | | | | | | | what was intended.
| * Patch 2848897: Support the system keyboard cues setting on Windowspatthoyts2010-01-031-2/+15
| | | | | | | | Backported this patch from HEAD (kovalenko, thoyts)
| * Fix [Bug 1373712] and [Bug 1924761].dkf2010-01-022-19/+78
| |
| * [Bug 1924761]: Consolidate calls to XFilterEvent to make input methods work.dkf2010-01-012-63/+22
| |
| * Patch 2879789: Make torn-off menu entrys activate across whole windowpatthoyts2009-12-301-13/+25
| | | | | | | | backported from HEAD.
| * generic/ttk/ttkNotebook.c: Don't call Tk_DeleteOptionTable()jenglish2009-12-161-4/+1
| | | | | | | | [Bug 2915709], backport fix for [Bug 2496162].
| * [Bugs 220600, 220690]: Comment that TkWinChildProc is exportednijtmans2009-12-121-2/+2
| | | | | | | | through the stubs table since 8.5.9
| * Apply [Bug 2911570]'s patch to make color value hashing work on 64-bit.dkf2009-12-091-8/+11
| |
| * doc/GetHINSTANCE.3 correct mentioned header filenijtmans2009-12-023-4/+29
| | | | | | | | | | make TkWinChildProc available in private stub table. [Bug #220600] and [Bug #220690].
| * *** 8.5.8 TAGGED FOR RELEASE ***dgp2009-11-031-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tk.h: Bump to 8.5.8 for release. * library/tk.tcl: * unix/configure.in: * unix/tk.spec: * win/configure.in: * README: * unix/configure: autoconf-2.59 * win/configure: * changes: Updated for 8.5.8 release.
| * Apply (slight cleaner, tested) version of [Patch 1469210].dkf2009-10-222-23/+79
| |
| * * generic/tkConsole.c: Relax the runtime version requirements on Tcldgp2009-10-153-6/+6
| | | | | | | | | | | | | | | | | | * generic/tkMain.c: so that Tk 8.5.8 can [load] into Tcl 8.6 (and * generic/tkWindow.c: later 8.*) interps. * library/tk.tcl * unix/Makefile.in: * win/Makefile.in: * win/makefile.vc:
| * Correct generation of grayscale data from an image. Reported by Keith Vetterdkf2009-09-251-3/+3
| | | | | | | | on comp.lang.tcl.
| * * generic/tkMenuDraw.c (TkPostSubmenu): Fix reposting of submenu inhobbs2009-09-141-2/+6
| | | | | | | | | | | | | | * win/tkWinMenu.c (TkWinHandleMenuEvent): torn off Windows menu. [Bug 873613] (DrawMenuEntryArrow): Draw Win menu arrow after being torn off. [Bug 873608]
| * Backport of "misconfigured xft font engine" fixes.dkf2009-09-101-1/+14
| |
| * Fix word-wrapping of non-breaking spaces in the text widget to work reliably.dkf2009-08-041-2/+2
| |
| * [Bug 2496114]: Ensure that focus desynchronization doesn't cause a crash.dkf2009-07-221-1/+11
| |
| * Expose TkSmooth(Parse|Print)Proc through the internal stub table. It was the ↵nijtmans2009-06-274-23/+75
| | | | | | | | | | | | | | last set of internal function of this type which was not exposed yet. Removed TkTile(Parse|Print)Proc from tkInt.h, because they don't exist. Follow-up to [Bug 2804935], now all Tk*(Parse|Print)Proc functions are exposed through the internal stub table.
| * fix [Bug #220935] canvas dash update problemnijtmans2009-06-231-11/+7
| |
| * [Bug 1923684]: backported checkbutton fix for confused state when -offvalue ↵patthoyts2009-05-141-6/+23
| | | | | | | | equals -tristatevalue
| * Backported support for the Vista theme.patthoyts2009-05-143-4/+21
| | | | | | | | This requires the vsapi element engine, the hover state and the theme script definition.
| * [Bug 2791352] backported fix and tests for mis-parsing of certain font ↵patthoyts2009-05-131-1/+15
| | | | | | | | descriptions.
| * Private-export functions that were being used in extensions. [Bug 2768945]dkf2009-04-274-28/+191
| |
| * revert HandleEventGenerate change, it was causing bind-8.2 to faildas2009-04-111-2/+1
| |