mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
b28afa1644
Now all the columns have the menu for the commit, not just the subject column.
18 lines
317 B
Objective-C
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
|