diff --git a/PBChangedFile.h b/PBChangedFile.h index f4d53fd..7453db3 100644 --- a/PBChangedFile.h +++ b/PBChangedFile.h @@ -19,7 +19,6 @@ typedef enum { NSString *path; BOOL hasCachedChanges; BOOL hasUnstagedChanges; - BOOL shouldBeDeleted; // Index and HEAD stuff, to be used to revert changes NSString *commitBlobSHA; @@ -31,7 +30,7 @@ typedef enum { @property (copy) NSString *path, *commitBlobSHA, *commitBlobMode; @property (assign) PBChangedFileStatus status; -@property (assign) BOOL hasCachedChanges, hasUnstagedChanges, shouldBeDeleted; +@property (assign) BOOL hasCachedChanges, hasUnstagedChanges; - (NSImage *)icon; - (NSString *)indexInfo; diff --git a/PBChangedFile.m b/PBChangedFile.m index bbea198..e2bb7e8 100644 --- a/PBChangedFile.m +++ b/PBChangedFile.m @@ -11,7 +11,7 @@ @implementation PBChangedFile -@synthesize path, status, hasCachedChanges, hasUnstagedChanges, commitBlobSHA, commitBlobMode, shouldBeDeleted; +@synthesize path, status, hasCachedChanges, hasUnstagedChanges, commitBlobSHA, commitBlobMode; - (id) initWithPath:(NSString *)p {