From 6a4e2994d17220eb43015162522deec1efdd429b Mon Sep 17 00:00:00 2001 From: stuconnolly Date: Sat, 17 Oct 2009 00:35:09 +0000 Subject: Replace the use of hard coded preference keys with constants to prevent issues such as the one fixed in revision 1419. All future preference usage should be done so using these constants. --- Source/SPOutlineView.m | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'Source/SPOutlineView.m') diff --git a/Source/SPOutlineView.m b/Source/SPOutlineView.m index 97f8cab3..cfbb0cc2 100644 --- a/Source/SPOutlineView.m +++ b/Source/SPOutlineView.m @@ -22,10 +22,8 @@ // // More info at - #import "SPOutlineView.h" - @implementation SPOutlineView - (BOOL)acceptsFirstResponder @@ -33,9 +31,9 @@ return YES; } --(void)keyDown:(NSEvent *)theEvent +- (void)keyDown:(NSEvent *)theEvent { - if([self numberOfSelectedRows] == 1 && ([theEvent keyCode] == 36 || [theEvent keyCode] == 76)) + if ([self numberOfSelectedRows] == 1 && ([theEvent keyCode] == 36 || [theEvent keyCode] == 76)) { [self editColumn:0 row:[self selectedRow] withEvent:nil select:YES]; } @@ -43,4 +41,5 @@ [super keyDown:theEvent]; } } + @end -- cgit v1.2.3