diff options
author | dgp <dgp@users.sourceforge.net> | 2009-12-15 18:12:06 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2009-12-15 18:12:06 (GMT) |
commit | d98553d4645b44a9e51415ccf4310a5a5ba00cd8 (patch) | |
tree | 849ef434ae1180d453a78fd7d59ebf4c1fe08bd3 /generic/tkObj.c | |
parent | 486f411445e636529a84309fa71d5a149588a774 (diff) | |
download | tk-d98553d4645b44a9e51415ccf4310a5a5ba00cd8.zip tk-d98553d4645b44a9e51415ccf4310a5a5ba00cd8.tar.gz tk-d98553d4645b44a9e51415ccf4310a5a5ba00cd8.tar.bz2 |
* generic/tkConfig.c: Added another dimension of refCounting to the
* generic/tkInt.c: "option" Tcl_ObjType to improve memory troubles
* generic/tkObj.c: detailed in [Bug 2492179]. Also removed
registration of the "option" Tcl_ObjType.
*** POTENTIAL INCOMPATIBILITY *** for callers of
Tcl_GetObjType("option") which must now handle a NULL return.
Diffstat (limited to 'generic/tkObj.c')
-rw-r--r-- | generic/tkObj.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/generic/tkObj.c b/generic/tkObj.c index d3ce270..e78d7d2 100644 --- a/generic/tkObj.c +++ b/generic/tkObj.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkObj.c,v 1.26 2009/02/03 23:55:47 nijtmans Exp $ + * RCS: @(#) $Id: tkObj.c,v 1.27 2009/12/15 18:12:07 dgp Exp $ */ #include "tkInt.h" @@ -1075,7 +1075,6 @@ TkRegisterObjTypes(void) Tcl_RegisterObjType(&tkCursorObjType); Tcl_RegisterObjType(&tkFontObjType); Tcl_RegisterObjType(&mmObjType); - Tcl_RegisterObjType(&tkOptionObjType); Tcl_RegisterObjType(&pixelObjType); Tcl_RegisterObjType(&tkStateKeyObjType); Tcl_RegisterObjType(&windowObjType); |