@@ -55,21 +55,21 @@ * 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; +- set: (id )key + to: (id )obj; /* * \param key The key whose object should be returned * \return The object for the given key */ -- get: (OFObject*)key; +- get: (id )key; /* * Remove the object with the given key from the dictionary. * * \param key The key whose object should be removed */ -- remove: (OFObject*)key; +- remove: (id )key; @end