File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 4646
4747- (void )setHistorySearch : (NSString *)searchString mode : (NSInteger )mode ;
4848
49- -(NSNumber *)countCommintsOf : (NSString *)range ;
49+ -(NSNumber *)countCommitsOf : (NSString *)range ;
5050-(bool )remoteNeedFetch : (NSString *)remote ;
5151
5252@property (strong , readonly ) NSMutableArray *items;
Original file line number Diff line number Diff line change @@ -175,8 +175,8 @@ -(void)updateMetaDataforBranches:(PBSourceViewItem *)theBranches
175175 for (PBGitSVBranchItem* branch in [theBranches children ]){
176176 if ([branch isKindOfClass: [PBGitSVBranchItem class ]]){
177177 dispatch_async (PBGetWorkQueue (),^{
178- id ahead = [self countCommintsOf : [NSString stringWithFormat: @" origin/%@ ..%@ " ,branch.revSpecifier,branch.revSpecifier]];
179- id behind = [self countCommintsOf : [NSString stringWithFormat: @" %@ ..origin/%@ " ,branch.revSpecifier,branch.revSpecifier]];
178+ id ahead = [self countCommitsOf : [NSString stringWithFormat: @" origin/%@ ..%@ " ,branch.revSpecifier,branch.revSpecifier]];
179+ id behind = [self countCommitsOf : [NSString stringWithFormat: @" %@ ..origin/%@ " ,branch.revSpecifier,branch.revSpecifier]];
180180 dispatch_async (dispatch_get_main_queue (),^{
181181 [branch setAhead: ahead];
182182 [branch setBehind: behind];
@@ -205,7 +205,7 @@ -(void)evaluateRemoteBadge:(PBGitSVRemoteItem *)remote
205205 }
206206}
207207
208- -(NSNumber *)countCommintsOf : (NSString *)range
208+ -(NSNumber *)countCommitsOf : (NSString *)range
209209{
210210 NSArray *args = [NSArray arrayWithObjects: @" rev-list" , range, nil ];
211211 int ret;
You can’t perform that action at this time.
0 commit comments