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/tkTextWind.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/tkTextWind.c')
-rw-r--r-- | generic/tkTextWind.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tkTextWind.c b/generic/tkTextWind.c index ab0a4e9..b5da014 100644 --- a/generic/tkTextWind.c +++ b/generic/tkTextWind.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkTextWind.c,v 1.10 2003/11/15 02:33:51 vincentdarley Exp $ + * RCS: @(#) $Id: tkTextWind.c,v 1.11 2003/12/04 12:28:37 vincentdarley Exp $ */ #include "tk.h" @@ -997,9 +997,9 @@ EmbWinBboxProc(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. */ + * window, in pixels. */ int *heightPtr; /* Gets filled in with height of - * character, in pixels. */ + * window, in pixels. */ { TkTextSegment *ewPtr = (TkTextSegment *) chunkPtr->clientData; Tk_Window tkwin; |