diff options
author | rjohnson <rjohnson> | 1998-10-13 18:13:05 (GMT) |
---|---|---|
committer | rjohnson <rjohnson> | 1998-10-13 18:13:05 (GMT) |
commit | 66a2d0b81392599d07859d249372259daef2441c (patch) | |
tree | 8f7938e353656771307dd68a16d97c8b59b4e566 /generic/tkCanvas.h | |
parent | 6b30648b424171905375ec916ab86186a3043dfc (diff) | |
download | tk-66a2d0b81392599d07859d249372259daef2441c.zip tk-66a2d0b81392599d07859d249372259daef2441c.tar.gz tk-66a2d0b81392599d07859d249372259daef2441c.tar.bz2 |
Added performance improvement to canvas tag manipulation. This was
a submitted patch.
Diffstat (limited to 'generic/tkCanvas.h')
-rw-r--r-- | generic/tkCanvas.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tkCanvas.h b/generic/tkCanvas.h index a96fa6b..9dbcd0f 100644 --- a/generic/tkCanvas.h +++ b/generic/tkCanvas.h @@ -6,11 +6,12 @@ * * Copyright (c) 1991-1994 The Regents of the University of California. * Copyright (c) 1994-1995 Sun Microsystems, Inc. + * Copyright (c) 1998 by Scriptics Corporation. * * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkCanvas.h,v 1.2 1998/09/14 18:23:07 stanton Exp $ + * RCS: @(#) $Id: tkCanvas.h,v 1.3 1998/10/13 18:13:06 rjohnson Exp $ */ #ifndef _TKCANVAS @@ -208,6 +209,7 @@ typedef struct TkCanvas { * Postscript for the canvas. NULL means * no Postscript is currently being * generated. */ + Tcl_HashTable idTable; /* Table of integer indices. */ } TkCanvas; /* |