diff --git a/Source/NSTableView.m b/Source/NSTableView.m index 75dc1685f..91975bd3a 100644 --- a/Source/NSTableView.m +++ b/Source/NSTableView.m @@ -3146,6 +3146,16 @@ _isCellEditable (id delegate, NSArray *tableColumns, * Target-action */ +- (void) setAction: (SEL)aSelector +{ + _action = aSelector; +} + +- (SEL) action +{ + return _action; +} + - (void) setDoubleAction: (SEL)aSelector { _doubleAction = aSelector;