Convert to new Coder scheme. Use -initWithCoder instead

of +newWithCoder where appropriate.  Remove arguments typed
(Coder*).  Replace +_newCollectionWithCoder with
-_initCollectionWithCoder.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@334 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mccallum 1995-04-09 02:06:39 +00:00
parent 3b43be1a80
commit 73559b8788
8 changed files with 83 additions and 263 deletions

View file

@ -1,5 +1,5 @@
/* Code for implementation for Objective-C EltNode objects
Copyright (C) 1993 Free Software Foundation, Inc.
Copyright (C) 1993, 1995 Free Software Foundation, Inc.
Written by: R. Andrew McCallum <mccallum@cs.rochester.edu>
Dept. of Computer Science, U. of Rochester, Rochester, NY 14627
@ -45,7 +45,7 @@
/* Archiving must mimic the above designated initializer */
- (void) encodeWithCoder: (Coder*)aCoder
- (void) encodeWithCoder: aCoder
{
const char *encoding;
@ -68,20 +68,19 @@
return &_elt_comparison_function;
}
+ newWithCoder: (Coder*)aCoder
- initWithCoder: aCoder
{
id n;
char *encoding;
n = [super newWithCoder:aCoder];
[super initWithCoder:aCoder];
[aCoder decodeValueOfType:@encode(char*)
at:&encoding
withName:NULL];
*[n _eltComparisonFunctionPtr] = elt_get_comparison_function(encoding);
*[self _eltComparisonFunctionPtr] = elt_get_comparison_function(encoding);
[aCoder decodeValueOfType:encoding
at:[n _elementDataPtr]
at:[self _elementDataPtr]
withName:NULL];
return n;
return self;
}
- (int(*)(elt,elt)) comparisonFunction