diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2003-10-10 15:56:22 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2003-10-10 15:56:22 (GMT) |
commit | 15abaddf877bd0d1e49ece8961091a1ea0cfbc4f (patch) | |
tree | be593751f801bed7897c2c29968d8a9c9ed17e74 /generic/tkObj.c | |
parent | 6dbb76edae4b6cd09c48a9b4819f3623d67778cc (diff) | |
download | tk-15abaddf877bd0d1e49ece8961091a1ea0cfbc4f.zip tk-15abaddf877bd0d1e49ece8961091a1ea0cfbc4f.tar.gz tk-15abaddf877bd0d1e49ece8961091a1ea0cfbc4f.tar.bz2 |
Register the type of text indices. Also some exported symbol name policing...
Diffstat (limited to 'generic/tkObj.c')
-rw-r--r-- | generic/tkObj.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tkObj.c b/generic/tkObj.c index fff25d9..5338cb5 100644 --- a/generic/tkObj.c +++ b/generic/tkObj.c @@ -9,7 +9,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.8 2003/01/28 20:39:16 jenglish Exp $ + * RCS: @(#) $Id: tkObj.c,v 1.9 2003/10/10 15:56:22 dkf Exp $ */ #include "tkInt.h" @@ -857,4 +857,5 @@ TkRegisterObjTypes() Tcl_RegisterObjType(&pixelObjType); Tcl_RegisterObjType(&tkStateKeyObjType); Tcl_RegisterObjType(&windowObjType); + Tcl_RegisterObjType(&tkTextIndexType); } |