@@ -36,11 +36,11 @@ * * @brief An abstract class for storing, adding and removing objects in an * array. */ #ifdef OF_HAVE_GENERICS -@interface OFMutableArray : OFArray +@interface OFMutableArray: OFArray #else # ifndef DOXYGEN # define ObjectType id # endif @interface OFMutableArray: OFArray @@ -73,11 +73,11 @@ /*! * @brief Adds the objects from the specified OFArray to the end of the array. * * @param array An array of objects to add */ -- (void)addObjectsFromArray: (OFArray OF_GENERIC(ObjectType)*)array; +- (void)addObjectsFromArray: (OFArray OF_GENERIC(ObjectType) *)array; /*! * @brief Inserts an object to the OFArray at the specified index. * * @param object An object to add @@ -90,11 +90,11 @@ * @brief Inserts the objects from the specified OFArray at the specified index. * * @param array An array of objects * @param index The index where the objects should be inserted */ -- (void)insertObjectsFromArray: (OFArray OF_GENERIC(ObjectType)*)array +- (void)insertObjectsFromArray: (OFArray OF_GENERIC(ObjectType) *)array atIndex: (size_t)index; /*! * @brief Replaces the first object equivalent to the specified object with the * other specified object.