mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
PBChangedFile: remove shouldBeDeleted boolean
We don't need this anymore
This commit is contained in:
+1
-2
@@ -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
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user