@@ -80,19 +80,19 @@ return self; } - initWithObjects: (const id *)objects - forKeys: (const id *)keys + forKeys: (const id *)keys_ count: (size_t)count { self = [super init]; @try { _dictionary = [[OFMutableDictionary alloc] initWithObjects: objects - forKeys: keys + forKeys: keys_ count: count]; } @catch (id e) { [self release]; @throw e; }