git clone git://github.com/Caged/gitnub.git
Don't replace the person image with the standard gravatar image if no gravatar is found
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
//// CommitSummaryCell.h// GitNub//// Created by local22 on 3/12/08.// Copyright 2008 __MyCompanyName__. All rights reserved.// #import <Cocoa/Cocoa.h> @interface CommitSummaryCell : NSTextFieldCell { NSTextFieldCell *titleCell; NSTextFieldCell *subtitleCell; NSImageCell *gravatarCell;} - (void)setGravatarImage:(NSImage *)image;- (void)setSubtitle:(NSString *)string; @end