diff options
Diffstat (limited to 'Source/SPTableView.m')
-rw-r--r-- | Source/SPTableView.m | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/SPTableView.m b/Source/SPTableView.m index 61c63c75..a93bc655 100644 --- a/Source/SPTableView.m +++ b/Source/SPTableView.m @@ -54,7 +54,7 @@ @synthesize tabEditingDisabled; -- (id)init +- (id) init { if ((self = [super init])) { emptyDoubleClickAction = NULL; @@ -63,13 +63,13 @@ return self; } -- (void)awakeFromNib +- (void) awakeFromNib { [super setDoubleAction:@selector(_doubleClickAction)]; if ([NSTableView instancesRespondToSelector:@selector(awakeFromNib)]) { [super awakeFromNib]; - } +} } #pragma mark - @@ -98,7 +98,7 @@ */ - (NSMenu *)menuForEvent:(NSEvent *)event { -#ifndef SP_REFACTOR /* menuForEvent: */ +#ifndef SP_CODA /* menuForEvent: */ // Try to retrieve a reference to the table document (assuming this is frontmost tab) SPDatabaseDocument *parentTableDocument = nil; @@ -257,7 +257,7 @@ emptyDoubleClickAction = aSelector; } -#ifdef SP_REFACTOR +#ifdef SP_CODA - (void)delete:(id)sender { |