Several minor bugfixes

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@3576 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
richard 1999-01-19 10:55:24 +00:00
parent 185e4ef945
commit 9ddd4532b3
3 changed files with 15 additions and 1 deletions

View file

@ -312,7 +312,11 @@ NSApplication *theApp = [NSApplication sharedApplication];
return NO;
}
- (int)sendActionOn:(int)mask { return 0; }
- (int) sendActionOn: (int)mask
{
return [cell sendActionOn: mask];
}
- (void)setAction:(SEL)aSelector { [cell setAction:aSelector]; }
- (void)setContinuous:(BOOL)flag { [cell setContinuous:flag]; }
- (void)setTarget:(id)anObject { [cell setTarget:anObject]; }