Files
gitx/GitXTextFieldCell.h
Nathan Kinsinger b28afa1644 Add the contextual menu to the other columns of the commit list
Now all the columns have the menu for the commit, not just the subject column.
2010-09-12 19:32:50 -06:00

18 lines
317 B
Objective-C

//
// GitXTextFieldCell.h
// GitX
//
// Created by Nathan Kinsinger on 8/27/10.
// Copyright 2010 Nathan Kinsinger. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "PBRefContextDelegate.h"
@interface GitXTextFieldCell : NSTextFieldCell {
IBOutlet id<PBRefContextDelegate> contextMenuDelegate;
}
@end