diff options
author | das <das> | 2005-12-08 05:04:33 (GMT) |
---|---|---|
committer | das <das> | 2005-12-08 05:04:33 (GMT) |
commit | dabb1a78663162cab3042a6c2239342f719cf4a5 (patch) | |
tree | e991d18e08788b717501ada4256b30d01d3ca3cc /macosx/tkMacOSXXStubs.c | |
parent | dcf29b2d20816adf5e49932ac6a3e754621e162d (diff) | |
download | tk-dabb1a78663162cab3042a6c2239342f719cf4a5.zip tk-dabb1a78663162cab3042a6c2239342f719cf4a5.tar.gz tk-dabb1a78663162cab3042a6c2239342f719cf4a5.tar.bz2 |
* macosx/tkMacOSXInt.h:
* macosx/tkMacOSXWindowEvent.c:
* macosx/tkMacOSXXStubs.c: sync comments/whitespace with HEAD.
Diffstat (limited to 'macosx/tkMacOSXXStubs.c')
-rw-r--r-- | macosx/tkMacOSXXStubs.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/macosx/tkMacOSXXStubs.c b/macosx/tkMacOSXXStubs.c index 592c760..b776ae0 100644 --- a/macosx/tkMacOSXXStubs.c +++ b/macosx/tkMacOSXXStubs.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacOSXXStubs.c,v 1.2.2.10 2005/11/30 01:02:55 hobbs Exp $ + * RCS: @(#) $Id: tkMacOSXXStubs.c,v 1.2.2.11 2005/12/08 05:04:35 das Exp $ */ #include "tkInt.h" @@ -854,11 +854,11 @@ TkMacOSXXPutPixel( b = (pixel & image->blue_mask); if (image->obdata) { /* Image from XGetImage, 16 bit color values */ - cPix . red = r << 8; + cPix . red = r << 8; cPix . green = g << 8; cPix . blue = b << 8; } else { - cPix . red = r; + cPix . red = r; cPix . green = g; cPix . blue = b; } @@ -965,7 +965,7 @@ XSetWindowColormap( Debugger(); } -Status +Status XStringListToTextProperty( char** list, int count, |