diff --git a/ChangeLog b/ChangeLog index 9844fcf96..1ea9fbbcd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,8 @@ * Source/NSUserDefaults.m: Modified to operate on a read-only filesystem where the defaults database is missing. Application defaults and command line settings should still work. + * Source/GSDictionary.m: fix for keyed archioving reported by + Marc Ordinas i Llopis 2004-04-02 Richard Frith-Macdonald diff --git a/Source/GSDictionary.m b/Source/GSDictionary.m index 9d5a32227..1d13bd495 100644 --- a/Source/GSDictionary.m +++ b/Source/GSDictionary.m @@ -106,7 +106,7 @@ static SEL objSel; { if ([aCoder allowsKeyedCoding]) { - self = [super initWithCoder: aCoder]; + [super encodeWithCoder: aCoder]; } else {