mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
Add Diff to contextual menus
- added to menus for refs, commits, and files
- show a message when there are no changes
This commit is contained in:
@@ -8,11 +8,14 @@
|
||||
|
||||
#import <Cocoa/Cocoa.h>
|
||||
|
||||
@class PBGitCommit;
|
||||
|
||||
@interface PBDiffWindowController : NSWindowController {
|
||||
NSString *diff;
|
||||
}
|
||||
|
||||
- initWithDiff:(NSString *)diff;
|
||||
+ (void) showDiffWindowWithFiles:(NSArray *)filePaths fromCommit:(PBGitCommit *)startCommit diffCommit:(PBGitCommit *)diffCommit;
|
||||
- (id) initWithDiff:(NSString *)diff;
|
||||
|
||||
@property (readonly) NSString *diff;
|
||||
@end
|
||||
|
||||
Reference in New Issue
Block a user