Correct coding/decoding after type changes.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@36160 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fredkiefer 2013-02-17 16:53:48 +00:00
parent 695b0ae8e8
commit 6880e50086
15 changed files with 266 additions and 209 deletions

View file

@ -861,14 +861,19 @@ static NSMutableDictionary *units = nil;
- (void) encodeWithCoder: (NSCoder *)encoder
{
[super encodeWithCoder: encoder];
/* FIXME/TODO: not implemented */
return;
}
- (id) initWithCoder: (NSCoder *)decoder
{
self = [super initWithCoder: decoder];
if (self == nil)
return nil;
/* FIXME/TODO: not implemented */
return nil;
return self;
}
- (void) dealloc