Improve documentation generation

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@12399 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
CaS 2002-02-03 17:21:20 +00:00
parent 1e3a06a03c
commit 7598cbd971
10 changed files with 187 additions and 48 deletions

View file

@ -329,7 +329,7 @@ static IMP _xRefImp; /* Serialize a crossref. */
+ (NSPortCoder*) portCoderWithReceivePort: (NSPort*)recv
sendPort: (NSPort*)send
components: (NSArray*)comp;
components: (NSArray*)comp
{
id coder;
@ -1266,11 +1266,11 @@ static IMP _xRefImp; /* Serialize a crossref. */
* array, and simply record the array index, so the corresponding decode
* method can tell which component to use.
*/
- (void) encodePortObject: (NSPort*)anObject
- (void) encodePortObject: (NSPort*)aPort
{
unsigned pos = [_comp count];
[_comp addObject: anObject];
[_comp addObject: aPort];
[self encodeValueOfObjCType: @encode(unsigned) at: &pos];
}