diff options
author | vincentdarley <vincentdarley> | 2003-12-04 12:28:37 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2003-12-04 12:28:37 (GMT) |
commit | ec8cf7ef92f7cdbbfbcbbf95cb6cc12afe303d6d (patch) | |
tree | 04619a013d63ec2ed7ca9fa04e83d6cc561c8016 /generic/tkTextImage.c | |
parent | 50c35588c1284033589929bdf168163d5f9f7a8d (diff) | |
download | tk-ec8cf7ef92f7cdbbfbcbbf95cb6cc12afe303d6d.zip tk-ec8cf7ef92f7cdbbfbcbbf95cb6cc12afe303d6d.tar.gz tk-ec8cf7ef92f7cdbbfbcbbf95cb6cc12afe303d6d.tar.bz2 |
fix to text widget tabs and xy-scroll-command
Diffstat (limited to 'generic/tkTextImage.c')
-rw-r--r-- | generic/tkTextImage.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tkTextImage.c b/generic/tkTextImage.c index f086fbd..4f6535f 100644 --- a/generic/tkTextImage.c +++ b/generic/tkTextImage.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkTextImage.c,v 1.10 2003/11/07 15:36:26 vincentdarley Exp $ + * RCS: @(#) $Id: tkTextImage.c,v 1.11 2003/12/04 12:28:37 vincentdarley Exp $ */ #include "tk.h" @@ -711,9 +711,9 @@ EmbImageBboxProc(chunkPtr, index, y, lineHeight, baseline, xPtr, yPtr, int *xPtr, *yPtr; /* Gets filled in with coords of * character's upper-left pixel. */ int *widthPtr; /* Gets filled in with width of - * character, in pixels. */ + * image, in pixels. */ int *heightPtr; /* Gets filled in with height of - * character, in pixels. */ + * image, in pixels. */ { TkTextSegment *eiPtr = (TkTextSegment *) chunkPtr->clientData; Tk_Image image; |