mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
4f212f04b5
This causes trouble if a file was partially staged, or if we switch from the staged changes to the unstaged changes. It should be quick enough not to matter anyway, so let's simplify things and remove the check.
22 lines
536 B
Objective-C
22 lines
536 B
Objective-C
//
|
|
// PBWebChangesController.h
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 22-09-08.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "PBWebController.h"
|
|
#import "PBGitCommitController.h"
|
|
#import "PBChangedFile.h"
|
|
|
|
@interface PBWebChangesController : PBWebController {
|
|
IBOutlet NSArrayController *unstagedFilesController;
|
|
IBOutlet NSArrayController *cachedFilesController;
|
|
IBOutlet PBGitCommitController *controller;
|
|
}
|
|
|
|
- (void) showDiff:(PBChangedFile *)file cached:(BOOL)cached;
|
|
@end
|