@@ -28,19 +28,19 @@ * A key can be any object. * * \param key The key to set * \param obj The object to set the key to */ -- (void)setObject: (OFObject*)obj - forKey: (OFObject *)key; +- (void)setObject: (id)obj + forKey: (id )key; /** * Remove the object with the given key from the dictionary. * * \param key The key whose object should be removed */ -- (void)removeObjectForKey: (OFObject*)key; +- (void)removeObjectForKey: (id)key; #ifdef OF_HAVE_BLOCKS /** * Replaces each object with the object returned by the block. *