PBChangedFile: remove shouldBeDeleted boolean

We don't need this anymore
This commit is contained in:
Pieter de Bie
2009-05-28 17:36:40 +01:00
parent a6b7c0c2a6
commit f9ff15cc6b
2 changed files with 2 additions and 3 deletions
+1 -2
View File
@@ -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;
+1 -1
View File
@@ -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
{