From dd415881beb560cbf09521787698e01a9afc8057 Mon Sep 17 00:00:00 2001 From: Kristian Rietveld Date: Sun, 27 Dec 2009 22:56:52 +0100 Subject: [PATCH] initWithContentRect: has a NSUInteger parameter now The typedef in place for Tiger and earlier systems should change this to unsigned int without problems. --- gdk/quartz/GdkQuartzWindow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdk/quartz/GdkQuartzWindow.c b/gdk/quartz/GdkQuartzWindow.c index b43a2beaa4..dcd725044c 100644 --- a/gdk/quartz/GdkQuartzWindow.c +++ b/gdk/quartz/GdkQuartzWindow.c @@ -181,7 +181,7 @@ _gdk_event_queue_append (gdk_display_get_default (), event); } --(id)initWithContentRect:(NSRect)contentRect styleMask:(unsigned int)styleMask backing:(NSBackingStoreType)backingType defer:(BOOL)flag screen:(NSScreen *)screen +-(id)initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)styleMask backing:(NSBackingStoreType)backingType defer:(BOOL)flag screen:(NSScreen *)screen { self = [super initWithContentRect:contentRect styleMask:styleMask