mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
5010511bdb
This makes sure we don't add a double object to our array, if a file has both cached and unstaged changes.
24 lines
556 B
Objective-C
24 lines
556 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;
|
|
|
|
id previousFile;
|
|
}
|
|
|
|
- (void) showDiff:(PBChangedFile *)file cached:(BOOL)cached;
|
|
@end
|