We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca16ba1 commit 84555e0Copy full SHA for 84555e0
Classes/Views/PBGitRevisionCell.m
@@ -315,8 +315,8 @@ - (void)drawRect:(NSRect)dirtyRect
315
[self drawRefsInRect:rect];
316
}
317
318
-- (void) setObjectValue: (PBGitCommit*)object {
319
- [super setObjectValue:[NSValue valueWithNonretainedObject:object]];
+- (void)setObjectValue:(PBGitCommit *)object {
+ [super setObjectValue:object];
320
321
[self setNeedsDisplay:YES];
322
[self setNeedsLayout:YES];
@@ -359,7 +359,7 @@ - (void)layout {
359
360
361
- (PBGitCommit*) objectValue {
362
- return [[super objectValue] nonretainedObjectValue];
+ return [super objectValue];
363
364
365
- (int) indexAtX:(CGFloat)x
0 commit comments