diff options
author | jenglish@flightlab.com <jenglish> | 2003-10-14 23:11:02 (GMT) |
---|---|---|
committer | jenglish@flightlab.com <jenglish> | 2003-10-14 23:11:02 (GMT) |
commit | 8c597419e367d53cef19f5287b473aaca01741a9 (patch) | |
tree | 6a6458e61d9a979afaaf40198b43741d7f74affb /unix/tkUnixPort.h | |
parent | 7e4eedc61aaea29ae3b1cbce68d8275c9aaf999d (diff) | |
download | tk-8c597419e367d53cef19f5287b473aaca01741a9.zip tk-8c597419e367d53cef19f5287b473aaca01741a9.tar.gz tk-8c597419e367d53cef19f5287b473aaca01741a9.tar.bz2 |
changed macro argument names to match function argument names
('dest' and 'src' were swapped, which was confusing) [GPS]
Diffstat (limited to 'unix/tkUnixPort.h')
-rw-r--r-- | unix/tkUnixPort.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/unix/tkUnixPort.h b/unix/tkUnixPort.h index dbde1f2..d65f7f2 100644 --- a/unix/tkUnixPort.h +++ b/unix/tkUnixPort.h @@ -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: tkUnixPort.h,v 1.8 2002/06/14 13:35:49 dkf Exp $ + * RCS: @(#) $Id: tkUnixPort.h,v 1.9 2003/10/14 23:11:03 jenglish Exp $ */ #ifndef _UNIXPORT @@ -155,9 +155,9 @@ extern int errno; * needed for X. */ -#define TkPutImage(colors, ncolors, display, pixels, gc, image, destx, desty, srcx, srcy, width, height) \ - XPutImage(display, pixels, gc, image, destx, desty, srcx, \ - srcy, width, height); +#define TkPutImage(colors, ncolors, display, pixels, gc, image, srcx, srcy, destx, desty, width, height) \ + XPutImage(display, pixels, gc, image, srcx, srcy, destx, \ + desty, width, height); /* * Supply macros for seek offsets, if they're not already provided by |