Implemented methods [action] and [setAction:].

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@17367 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
FredKiefer 2003-07-26 15:45:01 +00:00
parent 93d8d8e23d
commit b7ff4821c5

View file

@ -3146,6 +3146,16 @@ _isCellEditable (id delegate, NSArray *tableColumns,
* Target-action * Target-action
*/ */
- (void) setAction: (SEL)aSelector
{
_action = aSelector;
}
- (SEL) action
{
return _action;
}
- (void) setDoubleAction: (SEL)aSelector - (void) setDoubleAction: (SEL)aSelector
{ {
_doubleAction = aSelector; _doubleAction = aSelector;