mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 12:00:52 +00:00
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:
parent
c308e732a3
commit
7ada97ed5d
1 changed files with 10 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue