Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add correct border to combobox on Vista | patthoyts | 2008-05-15 | 2 | -1/+28 |
| | |||||
* | We should use the thread allocator for threaded builds. Added 'tclalloc' ↵ | patthoyts | 2008-05-15 | 3 | -5/+16 |
| | | | | option to disable. | ||||
* | Apply fix for [Bug 1639824] | dkf | 2008-05-14 | 2 | -4/+19 |
| | |||||
* | Support pixel sized font in the +/- keybindings | patthoyts | 2008-05-13 | 2 | -3/+9 |
| | |||||
* | -activestyle default is underline on windows | patthoyts | 2008-05-13 | 2 | -2/+8 |
| | |||||
* | Fixed a hangup in the tk_chooseColor tests by ensuring the temporary array ↵ | patthoyts | 2008-05-13 | 2 | -12/+23 |
| | | | | is unset | ||||
* | Support for ttk widgets in AmpWidget | patthoyts | 2008-05-11 | 2 | -5/+6 |
| | |||||
* | Note negative widths for button | patthoyts | 2008-05-11 | 2 | -3/+9 |
| | |||||
* | Document the identify command as present on all ttk widgets | patthoyts | 2008-05-09 | 17 | -59/+62 |
| | |||||
* | fix Makefile dependency | das | 2008-05-06 | 1 | -2/+2 |
| | |||||
* | "default" and "focus" adornments should not be disjoint [Bug 1942785] | jenglish | 2008-05-04 | 2 | -1/+8 |
| | |||||
* | fix typos, whitespace | das | 2008-05-03 | 2 | -5/+5 |
| | |||||
* | fix constness warnings | das | 2008-05-03 | 1 | -4/+4 |
| | |||||
* | More elimination of pre-C89-isms. | dkf | 2008-05-02 | 5 | -289/+287 |
| | |||||
* | Forgot to check in critical helper macro! | dkf | 2008-04-28 | 1 | -2/+8 |
| | |||||
* | Get rid of pre-C89-isms (esp. CONST vs const). | dkf | 2008-04-27 | 108 | -4653/+4644 |
| | |||||
* | remove ioUtil.test, llvm-gcc fix | das | 2008-04-25 | 1 | -9/+1 |
| | |||||
* | BUGFIX: [$tv selection] takes a list of items, not a single item [Bug 1951733]. | jenglish | 2008-04-25 | 2 | -2/+7 |
| | |||||
* | Include ws2_32 in the link list [Bug 19200872] | patthoyts | 2008-04-20 | 2 | -2/+3 |
| | |||||
* | Minor change regarding the system menu on windows (1887169) | patthoyts | 2008-04-20 | 2 | -3/+4 |
| | |||||
* | Minor clarification of the button flash command (1926223) | patthoyts | 2008-04-20 | 2 | -4/+8 |
| | |||||
* | Corrected description of when tag -relief is ignored. | dkf | 2008-04-17 | 2 | -2/+7 |
| | |||||
* | * generic/tkCanvas.c: Fix logic that determines when canvas item | dgp | 2008-04-17 | 2 | -4/+10 |
| | | | | <Enter> event should fire. Thanks to Sebastian Wangnick. [Bug 1327482] | ||||
* | * generic/tkStubInit.c: make stubs tables static const | das | 2008-04-16 | 3 | -20/+28 |
| | | | | | * generic/tkWindow.c (Initialize): and export only a module-scope pointer to to the main stubs table (for package init). [Patch 1938497] | ||||
* | * configure tktest-X11 with --disable-corefoundation to enable testing of ↵ | das | 2008-04-15 | 2 | -7/+25 |
| | | | | | | | both notifiers from Xcode * add vsapi.test * sync Wish.xcode with Wish.xcodeproj | ||||
* | Fixed bug #1941740: tk_chooseColor -title was broken in revision 1.40 after ↵ | patthoyts | 2008-04-14 | 4 | -8/+89 |
| | | | | some code cleanup. Added tests for this windows dialog to avoid regression. | ||||
* | Let the GIF writer use a real LZW compressor. | nijtmans | 2008-04-09 | 2 | -444/+325 |
| | |||||
* | a little cleanup, in preparation for replacing the gif compressor with a ↵ | nijtmans | 2008-04-09 | 1 | -92/+85 |
| | | | | real LZW one. | ||||
* | eliminate a few gcc 4.3 warnings | nijtmans | 2008-04-09 | 1 | -5/+3 |
| | |||||
* | Improved the element factory documentation and cross-links | patthoyts | 2008-04-09 | 3 | -28/+44 |
| | |||||
* | Forgot to add this yesterday | patthoyts | 2008-04-09 | 1 | -0/+48 |
| | |||||
* | Provide a visual-styles API element engine to permit scripts to create | patthoyts | 2008-04-08 | 3 | -3/+247 |
| | | | | any available windows xp/vista element. Plus basic tests. | ||||
* | * generic/tkDecls.h: make genstubs (genStubs.tcl changes). | das | 2008-04-08 | 4 | -16/+15 |
| | | | | | * generic/tkIntPlatDecls.h: * generic/tkIntXlibDecls.h: | ||||
* | * tkDecls.h: Reverted das's change of Tk's stubs pointers | Kevin B Kenny | 2008-04-08 | 6 | -43/+35 |
| | | | | | | | | | | | * tkIntDecls.h: from 'extern' to 'EXTERN'. Since the stubs pointer * tkPlatDecls.h: is always linked statically, its wrong to import or export it from a DLL, and the change causes trouble for extensions that build with -DUSE_TK_STUBS. * tkWinEmbed.c: Removed #if 0 code. Trust the revision control system, if you need it again, you can find it. * tkWinSend.c: Added conditional compilation to silence several compiler warnings. | ||||
* | * generic/tkWindow.c (Initialize): fix double-free on Tk_ParseArgv | hobbs | 2008-04-07 | 3 | -3/+29 |
| | | | | * tests/main.test (main-3.*): error. [Bug 1937135] | ||||
* | use kenny variant for 1936238 fix | hobbs | 2008-04-07 | 2 | -13/+5 |
| | |||||
* | * generic/tkArgv.c: fix -help mem explosion. [Bug 1936238] (bachmann) | hobbs | 2008-04-07 | 2 | -4/+9 |
| | |||||
* | autoconf-2.59 | dgp | 2008-04-07 | 1 | -5/+5 |
| | |||||
* | Don't resize the window if the toplevel is not resizable or the sizegrip is ↵ | patthoyts | 2008-04-04 | 2 | -3/+24 |
| | | | | disabled | ||||
* | Fixed stubs usage | patthoyts | 2008-04-03 | 2 | -5/+14 |
| | |||||
* | Fix the foreground colour for labelframe in xp | patthoyts | 2008-04-03 | 2 | -2/+6 |
| | |||||
* | * unix/configure: autoconf-2.59 | das | 2008-04-02 | 1 | -1/+1 |
| | |||||
* | * unix/configure.in (Darwin): remove now unnecessary unexporting | das | 2008-04-02 | 1 | -2/+2 |
| | | | | of libtclstub symbols from libtk. | ||||
* | * generic/tkDecls.h: make genstubs | das | 2008-04-02 | 7 | -63/+23 |
| | | | | | | | | * generic/tkIntDecls.h: * generic/tkIntPlatDecls.h: * generic/tkIntXlibDecls.h: * generic/tkPlatDecls.h: * generic/tkStubInit.c: | ||||
* | * generic/tkStubLib.c: make symbols in libtkstub.a MODULE_SCOPE to | das | 2008-04-02 | 3 | -13/+44 |
| | | | | | | | | | avoid exporting them from libraries that link with -ltkstub; constify tk*StubsPtr and stub table hook pointers. [Bug 1819422] * generic/tkStubLib.c: undef USE_TCL_STUBS before defining it * generic/ttk/ttkStubLib.c: unconditionally; remove needless #ifdef | ||||
* | * generic/tk.decls: remove 'export' declarations of symbols now | das | 2008-04-02 | 1 | -23/+1 |
| | | | | only in libtkstub and no longer in libtk. | ||||
* | Tweak the debug targets | patthoyts | 2008-04-02 | 1 | -18/+7 |
| | |||||
* | * generic/tkWindow.c: Revised package initialization so that | dgp | 2008-04-02 | 4 | -8/+6 |
| | | | | | | * unix/Makefile.in: "tkStubsPtr" is not present in libtk.so, but * win/Makefile.in: is present only in libtkstub.a. This tightens * win/makefile.bc: up the rules for users of the stubs interfaces. * win/makefile.vc: [Tcl Bug 1819422]. | ||||
* | * generic/tkStubLib.c (Tk_InitStubs): Added missing error message and | dgp | 2008-04-02 | 1 | -0/+4 |
| | | | | | * generic/tkWindow.c (Tk_PkgInitStubsCheck): removed needless $ifdef complexity. | ||||
* | typo | dgp | 2008-04-02 | 2 | -13/+6 |
| |