diff options
author | das <das> | 2005-12-08 05:04:33 (GMT) |
---|---|---|
committer | das <das> | 2005-12-08 05:04:33 (GMT) |
commit | 7b8ab866347e0f1c861505307905f03a19153477 (patch) | |
tree | e991d18e08788b717501ada4256b30d01d3ca3cc /macosx/tkMacOSXXStubs.c | |
parent | f2ecb5ec412ca17bf02fddbabc8eb0d137b90bba (diff) | |
download | tk-7b8ab866347e0f1c861505307905f03a19153477.zip tk-7b8ab866347e0f1c861505307905f03a19153477.tar.gz tk-7b8ab866347e0f1c861505307905f03a19153477.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, |