@@ -132,27 +132,27 @@ /** * \param key The key whose object should be returned * \return The object for the given key or nil if the key was not found */ -- (id)get: (OFObject*)key; +- (id)objectForKey: (OFObject*)key; /** * Sets a key to an object. A key can be any object. * * \param key The key to set * \param obj The object to set the key to */ -- set: (OFObject *)key - to: (OFObject*)obj; +- setObject: (OFObject*)obj + forKey: (OFObject *)key; /** * Remove the object with the given key from the dictionary. * * \param key The key whose object should be removed */ -- remove: (OFObject*)key; +- removeObjectForKey: (OFObject*)key; /** * Changes the hash size of the dictionary. * * \param hashsize The new hash size for the dictionary