bustage fix, NSRectFromCGRect is 10.5 only.

This commit is contained in:
joshmoz@gmail.com 2008-03-04 13:07:04 -08:00
parent f26217a9b2
commit 55b0ac00c2

View File

@ -242,7 +242,7 @@ nsNativeThemeCocoa::DrawCellWithScaling(NSCell *cell,
{
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
NSRect drawRect = NSRectFromCGRect(destRect);
NSRect drawRect = NSMakeRect(destRect.origin.x, destRect.origin.y, destRect.size.width, destRect.size.height);
CGAffineTransform savedCTM;