summaryrefslogtreecommitdiffstats
path: root/generic
Commit message (Collapse)AuthorAgeFilesLines
* Merge updates from core-8-5-branch.bindScriptCountJoe Mistachkin2015-02-052-13/+37
|\
| * [d186605d05] Stop invalid read beyond objv.dgp2015-02-051-1/+1
| |
| * Remove Mac-specific idle handler in tkTextDisp.c that caused delay in text ↵Kevin Walzer2015-02-021-10/+0
| | | | | | | | redraw during scrolling; no longer needed
| * Improved scrolling for text under Cocoa; thanks to Marc Culler for patch.Kevin Walzer2015-01-041-0/+34
| |
| * Fix typos in commentsfvogel2014-11-211-2/+2
| |
* | Merge updates from core 8.5 branch.Joe Mistachkin2014-11-1143-412/+467
|\ \ | |/
| * Restore test menu-32.8dgp2014-11-071-3/+3
| |
| * Stop invalid read.dgp2014-11-061-0/+1
| |
| * Pushing the fix out to more files.dgp2014-10-302-12/+4
| |
| * Fixed bug [3417012fff]fvogel2014-10-291-3/+8
| |
| * missed bump bitsdgp2014-10-151-2/+2
| |
| * Fixed failing textDisp-19.11.20 and textDisp-19.11.23 [810c43d789]bug_810c43d789fvogel2014-09-271-0/+8
| |
| * merge 8.5dgp2014-08-181-0/+10
| |\
| | * Fix for shimmering of buttons embedded when scrolled in text and canvas ↵Kevin Walzer2014-08-161-0/+10
| | | | | | | | | | | | widgets; improvements in scrolling smoothness in text widget. Thanks to Marc Culler for patches.
| * | Bump to 8.5.16 for release.dgp2014-07-231-3/+3
| |/
| * Squash problem with native AIX cc not allowing direct macro redefinition.jan.nijtmans2014-02-031-0/+3
| |
| * Fix uninitialized variable in 16-bit PPM handling. [1632447] follow-up.jan.nijtmans2013-11-111-1/+1
| |
| * Fix [0aa5e852dc]: Accept newline characters as value in Tk option filesjan.nijtmans2013-11-111-7/+18
| |
| * Fix StringReadPPM function from previous commit.jan.nijtmans2013-11-031-1/+1
| |
| * [1632447]: Allow the PPM maxval to go up to 65535, to conform with a formatdkf2013-11-031-17/+41
| | | | | | definition change from around 2000 (even if that's a rare format).
| * Fix refcount bug in FreeFontObjProc. Could result in freeing a TkFont which ↵jan.nijtmans2013-10-311-1/+1
| | | | | | | | was already freed.
| * Put extern "C" guards around all stub table struct definitions, jan.nijtmans2013-10-318-32/+52
| | | | | | | | | | so it is usable to be used for C++ compilers as well without the danger of modifying the calling convention. For tkDecls.h, ttkDecls.h tkIntXlibDecls.h is was no problem, because tk.h, tkTheme.h and Xlib.h already contain those guards. But not for the other *Decls.h files.
| * Fix [3603436fff]: png save has wrong component indexesjan.nijtmans2013-10-281-6/+5
| |
| * Bump to 8.5.15 for release.dgp2013-08-301-2/+2
| |
| * Some more fixes for Cygwin32/64 in win32 GUI mode. jan.nijtmans2013-06-131-5/+5
| | | | | | | | Now that this is fully working, eliminate all usage of WISH_BUILD_LIB_SPEC: TK_BUILD_LIB_SPEC can be used everywhere in stead. Add tk.pc
| * Add support for X11 GUI-mode on Cygwin64jan.nijtmans2013-06-062-4/+4
| |
| * Fix [2100430]: ttk::entry widget index must be integerjan.nijtmans2013-06-053-13/+11
| |
| * Fix [3613759] ttk::entry and symbolic index names.jan.nijtmans2013-06-051-2/+5
| |\
| | * Suggested fix for [3613759]: ttk::entry and symbolic index namesbug_3613759jan.nijtmans2013-06-041-1/+5
| | |
| | * 3607830 Runtime checks that Xkb is available in the X server before trying todgp2013-04-011-0/+1
| | |\ | | | | | | | | use. Adapted from patch from Brian Griffin.
| | * | Remove dead code. During 8.6 alpha/beta, ↵jan.nijtmans2013-03-283-22/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Tk_DefineBitmap/Tk_GetBitmapFromData moved to stub entry 274/275 due to a signature change, but later that turned out not be necessary at all. The stub entries were kept in order not to lose binary compatibility for extensions that were compiled against beta 8.6 headers. Now that Tk 8.6 is final, this makes no sense any more.
| | * | 3607326 Stop segfault from [listbox .l -listvariable $array].dgp2013-03-111-3/+0
| | |\ \
| | * | | Eliminate all usage of functions Tcl_VarEval (deprecated) and Tcl_Eval (to ↵jan.nijtmans2013-03-078-21/+80
| | | | | | | | | | | | | | | | | | | | the prefered Tcl_EvalEx).
| | * | | Revert [ac229dabaa]. There is a reason the Tcl_GetIndexFromObj wrapper jenglish2013-02-2713-90/+89
| | | | | | | | | | | | | | | exists and is used.
| | * | | Eliminate all Tcl_GetIndexFromObj calls, which is only a thin wrapper around ↵jan.nijtmans2013-02-2713-89/+90
| | | | | | | | | | | | | | | | | | | | Tcl_GetIndexFromObjStruct.
| | * | | Remove unneeded SetOptionFromAny and SetTextIndexFromAny. They were only ↵jan.nijtmans2013-02-262-49/+2
| | | | | | | | | | | | | | | | | | | | needed to prevent a panic in Tcl, but Tcl now generates a nice error-message in stead of panicing.
| | * | | Replace all Tcl_TraceVar/Tcl_UntraceVar with Tcl_TraceVar2/Tcl_UntraceVar2 ↵jan.nijtmans2013-02-229-28/+28
| | | | | | | | | | | | | | | | | | | | calls: The former are just thin wrappers around the latter.
| | * | | ttk::theme::* packages don't Provide anything Extra.jenglish2013-02-153-3/+3
| | | | | | | | | | | | | | | Change Tcl_PkgProvideEx() back to Tcl_PkgProvide().
| | * | | Eliminate usage of Tcl_PkgProvide/Tcl_PkgRequire functions, use the 'Ex' ↵jan.nijtmans2013-02-157-9/+9
| | | | | | | | | | | | | | | | | | | | versions in stead.
| | * | | Eliminate last use of Tcl_GetStringResultjan.nijtmans2013-02-151-1/+1
| | | | |
| | * | | ttk::treeview: schedule redisplay when adding or removing tags [Bug 3603077].jenglish2013-02-041-0/+5
| | |\ \ \
| | * | | | eliminate unnecessary Tcl_ConvertToType calljan.nijtmans2013-02-011-4/+5
| | | | | |
| | * | | | some more int -> size_t changesjan.nijtmans2013-02-019-39/+43
| | | | | |
| | * | | | typojan.nijtmans2013-02-011-1/+1
| | | | | |
| | * | | | Use internalRep.twoPtrValue.ptr1 in stead of internalRep.otherValuePtr ↵jan.nijtmans2013-02-0111-45/+45
| | |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | everywhere. Change some internal "length" variables from type int to type size_t, so it could handle bigger string sizes (for "novem")
| | * \ \ \ \ Merge trunk. jan.nijtmans2013-01-311-1/+26
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | Define some macros in tk.h which are needed by Tk as fallback, which might be removed from future tcl.h versions.
| | * | | | | | Convert all Tcl_SetResult calls to Tcl_SetObjResult calls. jan.nijtmans2013-01-286-16/+14
| | | | | | | | | | | | | | | | | | | | | | | | Convert Tcl_GetStringFromObj to Tcl_GetString when possible.
| | * | | | | | Use some more (void *)'s in FreeProc's, a step in the direction getting Tk ↵jan.nijtmans2013-01-2614-49/+49
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to work with "novem"
| | * | | | | | more places convertedjan.nijtmans2013-01-2429-106/+106
| | | | | | | |
| | * | | | | | Merge core-8-5-branchjan.nijtmans2013-01-2424-78/+83
| | |\ \ \ \ \ \ | | | |/ / / / / | | | | | | | | Various Tcl_GetIndexFromObj -> Tcl_GetIndexFromObjStruct changes.