mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
c19d2c8058
- added to menus for refs, commits, and files
- show a message when there are no changes
22 lines
479 B
Objective-C
22 lines
479 B
Objective-C
//
|
|
// PBDiffWindowController.h
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 13-10-08.
|
|
// Copyright 2008 Pieter de Bie. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@class PBGitCommit;
|
|
|
|
@interface PBDiffWindowController : NSWindowController {
|
|
NSString *diff;
|
|
}
|
|
|
|
+ (void) showDiffWindowWithFiles:(NSArray *)filePaths fromCommit:(PBGitCommit *)startCommit diffCommit:(PBGitCommit *)diffCommit;
|
|
- (id) initWithDiff:(NSString *)diff;
|
|
|
|
@property (readonly) NSString *diff;
|
|
@end
|