Skip to content

Commit

Permalink
awakeFromNib should be void
Browse files Browse the repository at this point in the history
  • Loading branch information
ciaran committed Aug 19, 2008
1 parent 159924a commit 01a5cf3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions PBDetailController.m
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,13 @@ - (id)initWithRepository:(PBGitRepository*)theRepository;
return self;
}

- awakeFromNib
- (void)awakeFromNib
{
[fileBrowser setTarget:self];
[fileBrowser setDoubleAction:@selector(openSelectedFile:)];
self.selectedTab = [NSNumber numberWithInt:0];
[commitController addObserver:self forKeyPath:@"selection" options:(NSKeyValueObservingOptionNew,NSKeyValueObservingOptionOld) context:@"commitChange"];
[treeController addObserver:self forKeyPath:@"selection" options:0 context:@"treeChange"];
return self;
}

- (void) updateKeys
Expand Down

0 comments on commit 01a5cf3

Please sign in to comment.