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.
19 lines
372 B
Objective-C
19 lines
372 B
Objective-C
//
|
|
// PBRefContextDelegate.m
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 01-11-08.
|
|
// Copyright 2008 Pieter de Bie. All rights reserved.
|
|
//
|
|
|
|
|
|
@class PBGitRef;
|
|
@class PBGitCommit;
|
|
|
|
|
|
@protocol PBRefContextDelegate
|
|
- (NSArray *) menuItemsForRef:(PBGitRef *)ref;
|
|
- (NSArray *) menuItemsForCommit:(PBGitCommit *)commit;
|
|
- (NSArray *)menuItemsForRow:(NSInteger)rowIndex;
|
|
@end
|