diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2007-04-13 14:51:17 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2007-04-13 14:51:17 (GMT) |
commit | 57c91ad391ab148036a5c6e4f0fdee7381352a85 (patch) | |
tree | e9f3f498ec12ff4c5603356d84573c8242a537e0 /macosx/tkMacOSXCursor.c | |
parent | 59b73712486121720aa582183db730964dc8c8a9 (diff) | |
download | tk-57c91ad391ab148036a5c6e4f0fdee7381352a85.zip tk-57c91ad391ab148036a5c6e4f0fdee7381352a85.tar.gz tk-57c91ad391ab148036a5c6e4f0fdee7381352a85.tar.bz2 |
Reduce the #ifdef count a lot by adding debug-print macros
Diffstat (limited to 'macosx/tkMacOSXCursor.c')
-rw-r--r-- | macosx/tkMacOSXCursor.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/macosx/tkMacOSXCursor.c b/macosx/tkMacOSXCursor.c index 5b3cfa4..175af6a 100644 --- a/macosx/tkMacOSXCursor.c +++ b/macosx/tkMacOSXCursor.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacOSXCursor.c,v 1.8 2006/07/20 06:24:16 das Exp $ + * RCS: @(#) $Id: tkMacOSXCursor.c,v 1.9 2007/04/13 14:51:17 dkf Exp $ */ #include "tkMacOSXInt.h" @@ -358,7 +358,7 @@ TkMacOSXInstallCursor( CCrsrHandle ccursor; CursHandle cursor; static unsigned int cursorStep = 0; - + gResizeOverride = resizeOverride; if (resizeOverride) { @@ -366,9 +366,7 @@ TkMacOSXInstallCursor( if (cursor) { SetCursor(*cursor); } else { -#ifdef TK_MAC_DEBUG - fprintf(stderr,"Resize cursor failed, %d\n", ResError()); -#endif + LOG_MSG("Resize cursor failed, %d", ResError()); } } else if (macCursorPtr == NULL) { SetThemeCursor(kThemeArrowCursor); |