summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Try to make Tk more resilient in the face of Xft allocation failures.dkf2009-09-093-3/+36
|
* * generic/tkFocus.c: fix potential null dereference flagged by clangdas2009-09-0711-18/+55
| | | | | | | | | | | | | | * generic/tkMenu.c: static analyzer. * generic/tkTextBTree.c: * generic/tkTextDisp.c: * generic/tkTextIndex.c: * generic/tkConsole.c: silence false positives from clang static * generic/tkTest.c: analyzer about potential null dereference. * generic/tkText.c: * generic/tkTextBTree.c: * generic/tkTextTag.c: * generic/tkVisual.c:
* make support for clang static analyzer safer & cleanerdas2009-09-071-7/+9
|
* Corrected descriptive textdkf2009-09-041-2/+2
|
* Finish purging remains of old XID hacks (a bunch of unused/write-only fields indkf2009-09-043-40/+9
| | | | the TkDisplay structure...)
* Improve consistency of formatting of comments and function declsdkf2009-09-041-61/+57
|
* workaround llvm LTO bug on ppcdas2009-08-251-1/+2
|
* guard clang analyzer Tcl_Panic annotation with #ifndef USE_TCL_STUBSdas2009-08-251-2/+5
|
* [Bug 1909931]: Add support for server-interpreted access control addreses.dkf2009-08-252-22/+71
|
* Correct bindings for [tk_messageBox].dkf2009-08-242-4/+9
|
* Better formattingdkf2009-08-241-12/+12
|
* * generic/tkInt.h: Annotate Tcl_Panic as noreturn for clang staticdas2009-08-242-4/+5
| | | | analyzer in PURIFY builds, replacing preprocessor/assert technique.
* * carbon/Wish.xcode/project.pbxproj: remove references to obsoletedas2009-08-242-6/+2
| | | | * carbon/Wish.xcodeproj/project.pbxproj: prolog.ps file.
* * unix/configure: autoconf-2.59das2009-08-241-0/+1
|
* * macosx/Wish.sdef (new file): Install and enable sdef filedas2009-08-247-6/+85
| | | | | | | | | | * macosx/Wish-Info.plist.in: into Wish application bundle, * macosx/Tk.xcode/project.pbxproj: describing TkAqua apple event * macosx/Tk.xcodeproj/project.pbxproj: support for use by AppleScript. * unix/Makefile.in: (replaces functionality of * unix/configure.in: 'aete' resource removed with Cocoa port & fixes AppleScript issues reported on tcl-mac)
* * macosx/tkMacOSXHLEvents.c (ScriptHandler): Fix "do script" appledas2009-08-242-92/+60
| | | | | | * carbon/tkMacOSXHLEvents.c (ScriptHandler): event handler issues on recent OS X releases by using AE coercion to 'utf8' for text data and to 'fsrf' for alias data. (reported by Youness Alaoui on tcl-mac)
* * macosx/tkMacOSXDraw.c (TkMacOSX{Setup,Restore}DrawingContext):das2009-08-241-1/+3
| | | | | | Disable window flushing during Tk drawing to avoid immediate flush of NSView-based native widgets on draw. (fixes drawing performance issue reported by Youness Alaoui on tcl-mac)
* * macosx/tkMacOSXWindowEvent.c: Allow WM_DELETE_WINDOW handlers todas2009-08-241-5/+10
| | | | | prevent window closure by generating WM destroy event earlier (from window delegate's -windowShouldClose:). [Bug 2821084]
* * 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-1910-10/+431
|
* * macosx/tkMacOSXWm.c: Workaround for textured windows being draggabledas2009-08-142-1/+18
| | | | from opaque content areas. [Bug 2824538] (walzer)
* * macosx/tkMacOSXDraw.c: Avoid exception in XCopyArea() when copyingdas2009-08-141-2/+3
| | | | | from toplevel that has never been mapped. (reported by Youness Alaoui on tcl-mac)
* Eliminate more gcc warningsnijtmans2009-08-104-30/+45
|
* Eliminate various gcc warningsnijtmans2009-08-098-116/+185
| | | | include <vssym32.h> only when available
* Make the pendulum demo cope with resizing more gracefully.dkf2009-08-082-15/+23
|
* Small updates for minor issuesdkf2009-08-061-41/+34
|
* Fix word-wrapping of non-breaking spaces in the text widget to work reliably.dkf2009-08-042-12/+28
|
* eliminate various gcc and msvc compiler warningsnijtmans2009-08-0212-52/+84
|
* Oops; forgot to fix a spot for 64-bitdkf2009-08-011-2/+2
|
* Don't assume that we're on little-endian clients. [Bug 2830420]dkf2009-08-012-26/+27
|
* Reword so that the modern API is presented as preferred.dkf2009-07-272-24/+29
|
* Slight clarification.dkf2009-07-265-33/+40
|
* Corrected description of acceptable join styles. Spotted by Emiliano Gavilan.dkf2009-07-262-3/+8
|
* Added incompat flagdkf2009-07-231-0/+2
|
* Fix [Bug 2441988]. Also squelch use of TkCopyAndGlobalEval, we can do better!dkf2009-07-234-175/+269
|
* [Bug 2496114]: Ensure that focus desynchronization doesn't cause a crash.dkf2009-07-222-1/+16
|
* Corrected drawing of rotated underlines. [Bug 2356057]dkf2009-07-212-98/+103
|
* Fix [Bug 2328657] by explicitly excluding hacky zero-char chunks from ↵ferrieux2009-07-202-4/+11
| | | | intersection computation. Might deserve generalization to other tests.
* More fixes for [Bug 2824378]dkf2009-07-201-12/+13
|
* Fix [Bug 2824378] by correcting expected output.dkf2009-07-202-9/+12
|
* A slightly more efficient placingdkf2009-07-181-3/+3
|
* Fix the transfer of large binary data. I hate INCR selections transfers...dkf2009-07-182-10/+18
|
* * unix/Makefile.in: Define NDEBUG in optimized (non-das2009-07-182-2/+5
| | | | symbols) build to disable assert()s.
* * macosx/tkMacOSXBitmap.c: Fix tk::mac::iconBitmap crash due todas2009-07-182-2/+7
| | | | off-by-one ckalloc error. [Bug 2821318]
* * library/demos/mclist.tcl: use native sort arrows with aqua theme.das2009-07-151-4/+18
|
* * macosx/ttkMacOSXTheme.c: Update notebook tab appearance todas2009-07-153-32/+108
| | | | | | | | * library/ttk/aquaTheme.tcl: modern L&F; adjust tab & notebook padding and tabmargins; correct appearance of selected tree header; add support for native tree header sort arrows via user1 state. [Patch 2819620]
* Apply patch from [Bug 2821962] to make binary byte selection transfers work.dkf2009-07-152-20/+59
|
* Corrected definition of -height and -width for canvas' window items. [2326602]dkf2009-07-142-5/+8
|
* autoconf-2.59das2009-07-141-17/+34
|
* Allow turning off of XScreenSaver use. [Bug 2496018]dkf2009-07-142-20/+36
|