Newer icon for Transfers.

This commit is contained in:
Mitchell Livingston 2006-06-15 00:11:05 +00:00
parent 94768da2ae
commit 5f5d433b8e
2 changed files with 2 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 837 B

After

Width:  |  Height:  |  Size: 746 B

View File

@ -227,14 +227,12 @@
- (BOOL) pointInPauseRect: (NSPoint) point
{
return NSPointInRect( point, [self pauseRectForRow:
[self rowAtPoint: point]] );
return NSPointInRect(point, [self pauseRectForRow: [self rowAtPoint: point]]);
}
- (BOOL) pointInRevealRect: (NSPoint) point
{
return NSPointInRect( point, [self revealRectForRow:
[self rowAtPoint: point]] );
return NSPointInRect(point, [self revealRectForRow: [self rowAtPoint: point]]);
}
@end