summaryrefslogtreecommitdiffstats
path: root/macosx/tkMacOSXCursor.c
diff options
context:
space:
mode:
authordas <das>2006-07-20 06:24:16 (GMT)
committerdas <das>2006-07-20 06:24:16 (GMT)
commitf8c2582e1179a7fb88e146239f9d331bdde1456e (patch)
tree956bfb461f8842d898de94327db9578248dbf9cf /macosx/tkMacOSXCursor.c
parent9c369cac3807a69176b4238d558b428fc60f5bb9 (diff)
downloadtk-f8c2582e1179a7fb88e146239f9d331bdde1456e.zip
tk-f8c2582e1179a7fb88e146239f9d331bdde1456e.tar.gz
tk-f8c2582e1179a7fb88e146239f9d331bdde1456e.tar.bz2
* generic/tkImgGIF.c (ReadImage):
* macosx/tkMacOSXCursor.c (TkMacOSXCursor): * macosx/tkMacOSXDebug.c (TkMacOSXGetNamedDebugSymbol): * macosx/tkMacOSXInit.c (Map): * xlib/xgc.c (XCreateGC): fix signed-with-unsigned comparison and other warnings from gcc4 -Wextra.
Diffstat (limited to 'macosx/tkMacOSXCursor.c')
-rw-r--r--macosx/tkMacOSXCursor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/tkMacOSXCursor.c b/macosx/tkMacOSXCursor.c
index b7d4eba..5b3cfa4 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.7 2006/03/24 14:58:01 das Exp $
+ * RCS: @(#) $Id: tkMacOSXCursor.c,v 1.8 2006/07/20 06:24:16 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;