stop using a call that doesn't exist on 10.3, 99% of the time not calling it doesn't matter but I'll have a real fix soon. r=mento

This commit is contained in:
joshmoz%gmail.com 2007-05-03 19:47:33 +00:00
Родитель 7a83b690b4
Коммит ec26f83304
1 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -182,11 +182,12 @@ nsNativeThemeCocoa::DrawButton(CGContextRef cgContext, ThemeButtonKind inKind,
[image setSize:NSMakeSize(offscreenWidth, inBoxRect.size.height)];
// render to the given CGContextRef
[NSGraphicsContext saveGraphicsState];
[NSGraphicsContext setCurrentContext:[NSGraphicsContext graphicsContextWithGraphicsPort:cgContext flipped:YES]];
//[NSGraphicsContext saveGraphicsState];
// we can't use graphicsContextWithGraphicsPort now because that is 10.4 only, this is a band-aid
//[NSGraphicsContext setCurrentContext:[NSGraphicsContext graphicsContextWithGraphicsPort:cgContext flipped:YES]];
[image compositeToPoint:NSMakePoint(inBoxRect.origin.x, inBoxRect.origin.y + inBoxRect.size.height)
operation:NSCompositeSourceOver];
[NSGraphicsContext restoreGraphicsState];
//[NSGraphicsContext restoreGraphicsState];
[image release];
}
else {