@@ -19,11 +19,11 @@ { OFArray *new = [[OFArray alloc] init]; OFObject **objs; size_t len, i; - objs = [array data]; + objs = [array cArray]; len = [array count]; [new->array addNItems: len fromCArray: objs]; @@ -44,11 +44,11 @@ - removeNObjects: (size_t)nobjects { OFObject **objs; size_t len, i; - objs = [array data]; + objs = [array cArray]; len = [array count]; if (nobjects > len) @throw [OFOutOfRangeException newWithClass: isa];