(-setObjectValue:): Correct the argument type.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@18333 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Alexander Malmberg 2004-01-08 00:28:39 +00:00
parent dc10ac4c53
commit a9e055f495
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2004-01-08 01:24 Alexander Malmberg <alexander@malmberg.org>
* Source/NSActionCell.m (-setObjectValue:): Change the argument type
to id from 'NSString *'.
2004-01-08 00:47 Alexander Malmberg <alexander@malmberg.org>
* configure.ac: Fail with a verbose error message if libjpeg or

View file

@ -188,7 +188,7 @@ static Class controlClass;
/**
* Set the value of the receiver from anObject.
*/
- (void) setObjectValue: (NSString*)anObject
- (void) setObjectValue: (id)anObject
{
[super setObjectValue: anObject];
if (_control_view)