diff options
author | das <das> | 2007-07-02 13:06:13 (GMT) |
---|---|---|
committer | das <das> | 2007-07-02 13:06:13 (GMT) |
commit | f6c83cb452e565fe1f115dcdd68ad6df77c5d1e4 (patch) | |
tree | 5fc7af8806bad8c68260c24f0cb060fc3724cfbe /macosx | |
parent | ffafac42d2223ae0a476ca5875678140e730095d (diff) | |
download | tk-f6c83cb452e565fe1f115dcdd68ad6df77c5d1e4.zip tk-f6c83cb452e565fe1f115dcdd68ad6df77c5d1e4.tar.gz tk-f6c83cb452e565fe1f115dcdd68ad6df77c5d1e4.tar.bz2 |
* macosx/tkMacOSXColor.c: add debug messages for unknown pixel values.
* macosx/tkMacOSXDraw.c (TkMacOSXRestoreDrawingContext): don't restore
port state if it wasn't altered by TkMacOSXSetupDrawingContext().
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/tkMacOSXColor.c | 8 | ||||
-rw-r--r-- | macosx/tkMacOSXDraw.c | 4 |
2 files changed, 8 insertions, 4 deletions
diff --git a/macosx/tkMacOSXColor.c b/macosx/tkMacOSXColor.c index 1bf9542..cc2e674 100644 --- a/macosx/tkMacOSXColor.c +++ b/macosx/tkMacOSXColor.c @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacOSXColor.c,v 1.2.2.9 2007/06/29 03:22:01 das Exp $ + * RCS: @(#) $Id: tkMacOSXColor.c,v 1.2.2.10 2007/07/02 13:06:14 das Exp $ */ #include "tkMacOSXPrivate.h" @@ -300,7 +300,7 @@ TkSetMacColor( * * TkMacOSXSetColorInPort -- * - * Sets fore or back color in the current QD port from an X pixel + * Sets fore or back color in the given QD port from an X pixel * value, and if the pixel code indicates a system color, sets * the corresponding brush, textColor or background via * Appearance mgr APIs. @@ -367,6 +367,8 @@ TkMacOSXSetColorInPort( if (portChanged) { QDSwapPort(savePort, NULL); } + } else { + TkMacOSXDbgMsg("Ignored unknown pixel value 0x%lx", pixel); } if (penPat && !setPenPat) { GetPortBackPixPat(port, penPat); @@ -521,6 +523,8 @@ TkMacOSXSetColorInContext( } else if (((pixel >> 24) & 0xff) == TRANSPARENT_PIXEL) { CGContextSetRGBFillColor(context, 0.0, 0.0, 0.0, 0.0); CGContextSetRGBStrokeColor(context, 0.0, 0.0, 0.0, 0.0); + } else { + TkMacOSXDbgMsg("Ignored unknown pixel value 0x%lx", pixel); } } diff --git a/macosx/tkMacOSXDraw.c b/macosx/tkMacOSXDraw.c index 6809be1..d978ff5 100644 --- a/macosx/tkMacOSXDraw.c +++ b/macosx/tkMacOSXDraw.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: tkMacOSXDraw.c,v 1.2.2.27 2007/06/29 03:22:01 das Exp $ + * RCS: @(#) $Id: tkMacOSXDraw.c,v 1.2.2.28 2007/07/02 13:06:14 das Exp $ */ #include "tkMacOSXPrivate.h" @@ -1632,7 +1632,7 @@ TkMacOSXRestoreDrawingContext(TkMacOSXDrawingContext *dc) if (dc->port) { ChkErr(QDEndCGContext, dc->port, &(dc->context)); } - } else { + } else if (dc->port) { if (!tkPictureIsOpen) { HidePen(); } |