mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
a9dad9dd31
This reuses the code in the RefController to show context menus when right-clicking on refs.
14 lines
257 B
Objective-C
14 lines
257 B
Objective-C
//
|
|
// PBRefContextDelegate.m
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 01-11-08.
|
|
// Copyright 2008 Pieter de Bie. All rights reserved.
|
|
//
|
|
|
|
|
|
|
|
@protocol PBRefContextDelegate
|
|
- (NSArray *) menuItemsForRef:(PBGitRef *)ref commit:(PBGitCommit *)commit;
|
|
@end
|