summaryrefslogtreecommitdiffstats
path: root/generic
Commit message (Collapse)AuthorAgeFilesLines
...
* * generic/tkBind.c (HandleEventGenerate): Don't generate events fordas2009-08-241-2/+13
| | | | windows that don't exist yet (fixes TkAqua testsuite crash).
* Give an error if grid and pack are used in the same master. [Patch 2475855]pspjuth2009-08-196-6/+191
|
* Eliminate various gcc warningsnijtmans2009-08-094-113/+112
| | | | include <vssym32.h> only when available
* Fix word-wrapping of non-breaking spaces in the text widget to work reliably.dkf2009-08-041-7/+17
|
* Fix [Bug 2441988]. Also squelch use of TkCopyAndGlobalEval, we can do better!dkf2009-07-232-18/+27
|
* [Bug 2496114]: Ensure that focus desynchronization doesn't cause a crash.dkf2009-07-221-1/+11
|
* Corrected drawing of rotated underlines. [Bug 2356057]dkf2009-07-211-3/+3
|
* Fix [Bug 2328657] by explicitly excluding hacky zero-char chunks from ↵ferrieux2009-07-201-4/+5
| | | | intersection computation. Might deserve generalization to other tests.
* Avoid the use of C++ reserved words in headers [Bug2815625]patthoyts2009-07-021-2/+2
|
* s/Tcl_PanicEx/TclPanic/; improve clang assert Tcl_Panic macrologydas2009-06-301-3/+3
|
* * generic/tkInt.h: add assert macros for clang staticdas2009-06-305-8/+28
| | | | | | | | | | | | analyzer and redefine Tcl_Panic to assert after panic in clang PURIFY builds. * generic/tkImgPhInstance.c: small fixes to make clang static * generic/tkTextDisp.c: analyzer happier. * generic/tkConfig.c: add clang assert for false positives * generic/tkUndo.c: from static analyzer.
* Merge of TkAqua Cocoa portmacosx_cocoa_mergedas2009-06-299-65/+80
|
* Expose TkSmooth(Parse|Print)Proc through the internal stub table. It was the ↵macosx_cocoa_premergenijtmans2009-06-274-31/+54
| | | | | | | 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 problemmacosx_carbon_freezenijtmans2009-06-231-10/+6
| | | | (follow-up)
* fix [Bug #220935] canvas dash update problemnijtmans2009-06-221-3/+3
|
* regen stubsdkf2009-06-122-2/+29
|
* Move another two entries to the internal stub table from MODULE_SCOPE.dkf2009-06-122-8/+10
|
* BUGFIX: last commit did not account for possibility of 0 tabs.jenglish2009-05-171-17/+20
|
* generic/ttkNotebook.c: More flexible tab placement [Bug 1470246]jenglish2009-05-171-23/+42
|
* [Bug 1923684]: checkbuttons must prefer off over the indeterminate statepatthoyts2009-05-141-6/+23
| | | | | If a checkbutton offvalue is the same as the tristate value we should use the off state in preference. (andrey gusev)
* [Bug 2791352] handle parsing of type 5 font descriptions with hyphenated ↵patthoyts2009-05-131-1/+15
| | | | family name.
* oopsdkf2009-05-011-2/+1
|
* Factor out some of the postscript generation code to the PS prolog.dkf2009-05-011-171/+51
|
* Private-export functions that were being used in extensions. [Bug 2768945]dkf2009-04-274-38/+159
|
* revert HandleEventGenerate change, it was causing bind-8.2 to faildas2009-04-111-2/+1
|
* * generic/tkPointer.c (Tk_UpdatePointer): use all 5 buttons.das2009-04-101-2/+2
|
* * generic/tkMenu.c (PostProcessEntry): delay call todas2009-04-101-5/+5
| | | | TkpConfigureMenuEntry() until all menu entry attributes are setup.
* * generic/tkMenubutton.c: s/DEF_BUTTON_JUSTIFY/DEF_MENUBUTTON_JUSTIFY/das2009-04-101-2/+2
|
* * generic/tkUtil.c (TkBackgroundEvalObjv): use Tcl_BackgroundException.das2009-04-101-2/+2
|
* * generic/tkBind.c (HandleEventGenerate): ensure window exists beforedas2009-04-101-1/+2
| | | | generating an event for it (fixes testsuite crash).
* * generic/tkTextBTree.c (TkBTreeDeleteIndexRange): add bounds checkdas2009-04-101-2/+3
| | | | to startEnd array access (fixes testsuite crash).
* Squelch pointless file.dkf2009-04-101-284/+0
|
* Prevent zero-size malloc() calls. [Bug 2178820]dkf2009-03-251-3/+3
|
* [Feature Request 2636558] Tk_DefineBitmapnijtmans2009-02-277-42/+101
| | | | and Tk_GetBitmapFromData signature problem
* [Bug 2645457] check for dead windows after calling Tk_MakeWindowExist to ↵patthoyts2009-02-271-1/+8
| | | | avoid a crash when mapping dead windows.
* ElementStateEventProc: Avoid dangling pointers when layout changesjenglish2009-02-092-17/+26
| | | | [Fix for #2431428].
* Renamed several internal data structures and functions:jenglish2009-02-0816-277/+283
| | | | | | | ElementImpl -> ElementClass, LayoutNode -> Element. Remove more unnecessary casts. Add function Ttk_ClientRegion, common factor of entry, scale, progress, and treeview widgets.
* * generic/tkImgPhInstance.c: fix numerous leaks discovered with thedas2009-02-068-16/+39
| | | | | | | | | | | * generic/tkMenu.c: Mac OS X Instruments.app Leaks tool. * generic/tkText.c: * generic/tkTextImage.c: * generic/tkTextIndex.c: * generic/tkUndo.c: * generic/tkUtil.c: * generic/ttk/ttkFrame.c: * macosx/tkMacOSXWm.c:
* - eliminate some unnessary type castsnijtmans2009-02-0323-96/+103
| | | | | - some internal const decorations - spacing
* - eliminate some unnessary type castsnijtmans2009-01-284-16/+16
| | | | | - some internal const decorations - spacing
* fix typo that led to crashesdas2009-01-191-3/+3
|
* * generic/tk.h: Bump patchlevel to 8.6b1.1 to distinguishdgp2009-01-161-2/+2
| | | | | | | | | * library/tk.tcl: CVS snapshots from the 8.6b1 and 8.6b2 releases. * unix/configure.in: * win/configure.in: * unix/configure: autoconf-2.59 * win/configure:
* - fix for aMSN compatibility [tcl-Bug 2507326]nijtmans2009-01-143-38/+44
| | | | | - CONSTify Tk(Create|Find)menuReferences - various internal "const" decorations
* * generic/tkEvent.c: Fix a possible segv due to a NULLgeorgeps2009-01-111-1/+7
| | | | pointer dereference that occurs when XCreateIC fails.
* ttkNotebook.c(NotebookCleanup): Don't call Tk_DeleteOptionTable(),jenglish2009-01-111-4/+1
| | | | it's unnecessary and quite possibly harmful [Bug 2496162].
* CONSTify TkDebugBorder, TkStringToKeysym, TkDebugBitmapnijtmans2009-01-098-46/+47
| | | | | TkDebugColor, TkDebugCursor, TkDebugFont All those mods TIP #27 complient, no incompatibility risks.
* A few const -> CONST86 modifications, improvingnijtmans2009-01-065-38/+52
| | | | | | | | | backwards compatibility. Change Tk_ItemIndexProc and Tk_ItemInsertProc signature to have a Tcl_Obj parameter in stead of a string parameter. This is binary and source compatible with previous API, it just prevents the need for a type cast in the Tk_ItemType table construction. Bring doc in line with API.
* Apply [Patch 1539990] to speed up Tk_PhotoPutBlock in one case.dkf2009-01-061-10/+15
|
* cast away a warning.patthoyts2009-01-061-2/+2
|
* CONSTify Tk_ClipboardAppendnijtmans2009-01-023-13/+13
|