Source/NSTableColumn.m: changed the initWithIdentifier return type from

NSTableColumn* to id. It prevents warning when subclassing and is
consistent with the docs.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@11649 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Pierre-Yves Rivaille 2001-12-07 14:40:01 +00:00
parent adc15db374
commit c82a721e48

View file

@ -56,7 +56,7 @@
/*
* Initializing an NSTableColumn instance
*/
- (NSTableColumn*)initWithIdentifier: (id)anObject
- (id)initWithIdentifier: (id)anObject
{
self = [super init];
_width = 0;