From f90bcf3263b80b96754977ddbd5309704cf817fb Mon Sep 17 00:00:00 2001 From: thomasvl Date: Fri, 9 May 2008 18:53:09 +0000 Subject: Flush out suppport for 64bit, GC support. Added some more xcode configs related to the above. Removed some classes that the unittesting doesn't need (and aren't able to support 64bit). add base64, httpfetcher, and progress monitor stream. --- AppKit/GTMNSBezierPath+CGPath.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'AppKit/GTMNSBezierPath+CGPath.m') diff --git a/AppKit/GTMNSBezierPath+CGPath.m b/AppKit/GTMNSBezierPath+CGPath.m index c805f42..3bc6de9 100644 --- a/AppKit/GTMNSBezierPath+CGPath.m +++ b/AppKit/GTMNSBezierPath+CGPath.m @@ -1,5 +1,5 @@ // -// GTMNSBezierPath+CGPath.h +// GTMNSBezierPath+CGPath.m // // Category for extracting a CGPathRef from a NSBezierPath // @@ -33,13 +33,13 @@ CGMutablePathRef thePath = CGPathCreateMutable(); if (!thePath) return nil; - unsigned int elementCount = [self elementCount]; + NSInteger elementCount = [self elementCount]; // The maximum number of points is 3 for a NSCurveToBezierPathElement. // (controlPoint1, controlPoint2, and endPoint) NSPoint controlPoints[3]; - for (unsigned int i = 0; i < elementCount; i++) { + for (NSInteger i = 0; i < elementCount; i++) { switch ([self elementAtIndex:i associatedPoints:controlPoints]) { case NSMoveToBezierPathElement: CGPathMoveToPoint(thePath, &CGAffineTransformIdentity, -- cgit v1.2.3