Index: src/OFArray.h ================================================================== --- src/OFArray.h +++ src/OFArray.h @@ -134,24 +134,25 @@ */ - (id)objectAtIndex: (size_t)index; /** * Returns the index of the first object that is equivalent to the specified - * object. + * object or SIZE_MAX if it was not found. * * \param obj The object whose index is returned * \return The index of the first object equivalent to the specified object + * or SIZE_MAX if it was not found */ - (size_t)indexOfObject: (id)obj; /** * Returns the index of the first object that has the same address as the - * specified object. + * specified object or SIZE_MAX if it was not found. * * \param obj The object whose index is returned * \return The index of the first object that has the same aaddress as - * the specified object + * the specified object or SIZE_MAX if it was not found */ - (size_t)indexOfObjectIdenticalTo: (id)obj; /** * Returns the first object of the array or nil. Index: src/OFExceptions.h ================================================================== --- src/OFExceptions.h +++ src/OFExceptions.h @@ -1155,11 +1155,11 @@ OFString *ns; OFString *prefix; } #ifdef OF_HAVE_PROPERTIES -@property (readonly, nonatomic, getter=namespace) OFString *ns; +@property (readonly, nonatomic) OFString *namespace; @property (readonly, nonatomic) OFString *prefix; #endif /** * \param class_ The class of the object which caused the exception Index: src/OFString.h ================================================================== --- src/OFString.h +++ src/OFString.h @@ -288,18 +288,18 @@ - (of_unichar_t)characterAtIndex: (size_t)index; /** * \param str The string to search * \return The index of the first occurrence of the string or SIZE_MAX if it - * wasn't found + * was not found */ - (size_t)indexOfFirstOccurrenceOfString: (OFString*)str; /** * \param str The string to search * \return The index of the last occurrence of the string or SIZE_MAX if it - * wasn't found + * was not found */ - (size_t)indexOfLastOccurrenceOfString: (OFString*)str; /** * \param start The index where the substring starts Index: src/OFXMLAttribute.h ================================================================== --- src/OFXMLAttribute.h +++ src/OFXMLAttribute.h @@ -24,11 +24,11 @@ OFString *stringValue; } #ifdef OF_HAVE_PROPERTIES @property (readonly, retain) OFString *name; -@property (readonly, retain, getter=namespace) OFString *ns; +@property (readonly, retain) OFString *namespace; @property (readonly, retain) OFString *stringValue; #endif /** * \param name The name of the attribute Index: src/OFXMLElement.h ================================================================== --- src/OFXMLElement.h +++ src/OFXMLElement.h @@ -34,11 +34,11 @@ OFMutableString *comment; } #ifdef OF_HAVE_PROPERTIES @property (readonly, copy) OFString *name; -@property (readonly, copy, getter=namespace) OFString *ns; +@property (readonly, copy) OFString *namespace; @property (copy) OFString *defaultNamespace; @property (readonly, copy) OFArray *attributes; @property (readonly, copy) OFArray *children; #endif