mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
003977dad9
* When we are using subtree merge on git repository, GitX may show the slipped graph line. * Behind this glitch, GitX may leak the PBGitLane object.
23 lines
441 B
Objective-C
23 lines
441 B
Objective-C
//
|
|
// PBGitGrapher.h
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 17-06-08.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "PBGitCommit.h"
|
|
#import "PBGitGraphLine.h"
|
|
#import "PBGraphCellInfo.h"
|
|
|
|
@interface PBGitGrapher : NSObject {
|
|
PBGraphCellInfo *previous;
|
|
void *pl;
|
|
void *endLane;
|
|
}
|
|
|
|
- (id) initWithRepository:(PBGitRepository *)repo;
|
|
- (void) decorateCommit:(PBGitCommit *)commit;
|
|
@end
|