diff options
author | ericm <ericm> | 2000-08-21 22:45:15 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-08-21 22:45:15 (GMT) |
commit | 1cdb37f18ebe1de21b3b69b9bed5a486e30c8a7a (patch) | |
tree | 9de56bedba54010f31847335d27630ae119b110d /generic | |
parent | 193744537abf459f98a108f6926f83e7291a58dd (diff) | |
download | tk-1cdb37f18ebe1de21b3b69b9bed5a486e30c8a7a.zip tk-1cdb37f18ebe1de21b3b69b9bed5a486e30c8a7a.tar.gz tk-1cdb37f18ebe1de21b3b69b9bed5a486e30c8a7a.tar.bz2 |
Comment correction.
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tkImgPhoto.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tkImgPhoto.c b/generic/tkImgPhoto.c index 90d83c0..4084fc5 100644 --- a/generic/tkImgPhoto.c +++ b/generic/tkImgPhoto.c @@ -15,7 +15,7 @@ * Department of Computer Science, * Australian National University. * - * RCS: @(#) $Id: tkImgPhoto.c,v 1.20 2000/08/19 02:13:03 ericm Exp $ + * RCS: @(#) $Id: tkImgPhoto.c,v 1.21 2000/08/21 22:45:15 ericm Exp $ */ #include "tkInt.h" @@ -3793,8 +3793,8 @@ Tk_PhotoPutBlock(handle, blockPtr, x, y, width, height) /* * This block is grossly inefficient. For each row in the image, it - * finds each continguous string of transparent pixels, then marks those - * areas as invalid in the validRegion mask. This makes drawing very + * finds each continguous string of nontransparent pixels, then marks + * those areas as valid in the validRegion mask. This makes drawing very * efficient, because of the way we use X: we just say, here's your * mask, and here's your data. We need not worry about the current * background color, etc. But this costs us a lot on the image setup. |