diff options
author | dgp <dgp@users.sourceforge.net> | 2002-06-26 23:02:45 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2002-06-26 23:02:45 (GMT) |
commit | 5c3e66b300c55520a28cff51ef98c85790bc1da5 (patch) | |
tree | 793385b225e79cd6c7fb6401d2b843567659806c | |
parent | 590a81565ed929e914043dd10affaa90b87e8e17 (diff) | |
download | tk-5c3e66b300c55520a28cff51ef98c85790bc1da5.zip tk-5c3e66b300c55520a28cff51ef98c85790bc1da5.tar.gz tk-5c3e66b300c55520a28cff51ef98c85790bc1da5.tar.bz2 |
* (Tk_DrawChars) silence compiler warning.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | unix/tkUnixFont.c | 5 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2002-06-25 Don Porter <dgp@users.sf.net> + + * unix/tkUnixFont.c: (Tk_DrawChars) silence compiler warning. + 2002-06-26 David Gravereaux <davygrvy@pobox.com> * generic/tkStyle.c: <eol> of the committing cvs client didn't diff --git a/unix/tkUnixFont.c b/unix/tkUnixFont.c index 9bfeef6..2c39433 100644 --- a/unix/tkUnixFont.c +++ b/unix/tkUnixFont.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: tkUnixFont.c,v 1.13 2002/06/05 22:11:09 a_kovalenko Exp $ + * RCS: @(#) $Id: tkUnixFont.c,v 1.14 2002/06/26 23:02:45 dgp Exp $ */ #include "tkUnixInt.h" @@ -1158,7 +1158,8 @@ Tk_DrawChars(display, drawable, gc, tkfont, source, numBytes, x, y) int xStart, needWidth, window_width; Tcl_UniChar ch; FontFamily *familyPtr; - int rx, ry, width, height, border_width, depth; + int rx, ry; + unsigned int width, height, border_width, depth; int do_width; Drawable root; |