git clone git://github.com/andrewlmurray/gitnub.git
Only show first line of commit message in source list
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