mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
ff5f3f7979
Switch from storing both the ref and the commit to storing just one or the other as a refish. Change action methods that receive PBRefMenuItem to support the change in functionality. In particular the removeRefSheetDidEnd:returnCode:contextInfo: method in PBRefController now looks up the commit for the ref (this was the only place that needed both the ref and the commit).
15 lines
284 B
Objective-C
15 lines
284 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;
|
|
- (NSArray *) menuItemsForCommit:(PBGitCommit *)commit;
|
|
@end
|