@@ -58,12 +58,12 @@ { return (id)[[OFDictionary_hashtable alloc] initWithObjects: objects forKeys: keys]; } -- initWithObjects: (id*)objects - forKeys: (id*)keys +- initWithObjects: (id const*)objects + forKeys: (id const*)keys count: (size_t)count { return (id)[[OFDictionary_hashtable alloc] initWithObjects: objects forKeys: keys count: count]; @@ -154,12 +154,12 @@ { return [[[self alloc] initWithObjects: objects forKeys: keys] autorelease]; } -+ dictionaryWithObjects: (id*)objects - forKeys: (id*)keys ++ dictionaryWithObjects: (id const*)objects + forKeys: (id const*)keys count: (size_t)count { return [[[self alloc] initWithObjects: objects forKeys: keys count: count] autorelease]; @@ -211,12 +211,12 @@ [self release]; @throw [OFNotImplementedException exceptionWithClass: c selector: _cmd]; } -- initWithObjects: (id*)objects - forKeys: (id*)keys +- initWithObjects: (id const*)objects + forKeys: (id const*)keys count: (size_t)count { Class c = isa; [self release]; @throw [OFNotImplementedException exceptionWithClass: c