|
From: Martin R. <ru...@us...> - 2004-08-13 22:52:34
|
Update of /cvsroot/foo/foo/libfoo/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32713 Modified Files: FOONilModule.m Log Message: corrected archive methods Index: FOONilModule.m =================================================================== RCS file: /cvsroot/foo/foo/libfoo/src/FOONilModule.m,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** FOONilModule.m 13 Aug 2004 22:26:13 -0000 1.3 --- FOONilModule.m 13 Aug 2004 22:52:25 -0000 1.4 *************** *** 48,52 **** - (void) encodeWithCoder: (NSCoder *)coder { ! [super encodeWithCoder: coder]; return; --- 48,53 ---- - (void) encodeWithCoder: (NSCoder *)coder { ! // currently, FOONilModule doesn't inherit from FOOModule ! // [super encodeWithCoder: coder]; return; *************** *** 56,60 **** - (FOONilModule *) initWithCoder: (NSCoder *)coder { ! self = [super initWithCoder: coder]; return self; --- 57,63 ---- - (FOONilModule *) initWithCoder: (NSCoder *)coder { ! // self = [super initWithCoder: coder]; ! // currently, FOONilModule doesn't inherit from FOOModule ! self = [super init]; return self; |