diff options
author | das <das> | 2006-07-20 06:26:45 (GMT) |
---|---|---|
committer | das <das> | 2006-07-20 06:26:45 (GMT) |
commit | e673c7b95612047bc886329eda3d26e3e7807c9b (patch) | |
tree | fc8bec9dde27b2592c81f0797a3e93f4a2fdb7de /macosx/tkMacOSXCursor.c | |
parent | 995232e2ed50f06ad6981b713d300a8a6531571a (diff) | |
download | tk-e673c7b95612047bc886329eda3d26e3e7807c9b.zip tk-e673c7b95612047bc886329eda3d26e3e7807c9b.tar.gz tk-e673c7b95612047bc886329eda3d26e3e7807c9b.tar.bz2 |
* macosx/tkMacOSXCursor.c (TkMacOSXCursor):
* macosx/tkMacOSXDebug.c (TkMacOSXGetNamedDebugSymbol):
* macosx/tkMacOSXInit.c (Map): fix signed-with-unsigned comparison and
other warnings from gcc4 -Wextra.
Diffstat (limited to 'macosx/tkMacOSXCursor.c')
-rw-r--r-- | macosx/tkMacOSXCursor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/tkMacOSXCursor.c b/macosx/tkMacOSXCursor.c index 5d155b5..e72bbae 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.4.2.3 2006/03/28 02:44:13 das Exp $ + * RCS: @(#) $Id: tkMacOSXCursor.c,v 1.4.2.4 2006/07/20 06:26:45 das Exp $ */ #include "tkMacOSXInt.h" @@ -37,7 +37,7 @@ typedef struct { int type; /* Type of Mac cursor: for theme cursors * this is the theme cursor constant, * otherwise one of crsr or CURS */ - unsigned int count; /* For animating cursors, the count for the + int count; /* For animating cursors, the count for the cursor. */ } TkMacOSXCursor; |