Index: src/OFExceptions.h ================================================================== --- src/OFExceptions.h +++ src/OFExceptions.h @@ -1196,11 +1196,11 @@ OFString *ns; OFString *prefix; } #ifdef OF_HAVE_PROPERTIES -@property (readonly, nonatomic) OFString *namespace; +@property (readonly, nonatomic, getter=namespace) OFString *ns; @property (readonly, nonatomic) OFString *prefix; #endif /** * \param class_ The class of the object which caused the exception Index: src/OFXMLAttribute.h ================================================================== --- src/OFXMLAttribute.h +++ src/OFXMLAttribute.h @@ -29,11 +29,11 @@ OFString *stringValue; } #ifdef OF_HAVE_PROPERTIES @property (readonly, retain) OFString *name; -@property (readonly, retain) OFString *namespace; +@property (readonly, retain, getter=namespace) OFString *ns; @property (readonly, retain) OFString *stringValue; #endif /** * \param name The name of the attribute Index: src/OFXMLElement.h ================================================================== --- src/OFXMLElement.h +++ src/OFXMLElement.h @@ -39,11 +39,11 @@ OFMutableString *comment; } #ifdef OF_HAVE_PROPERTIES @property (readonly, copy) OFString *name; -@property (readonly, copy) OFString *namespace; +@property (readonly, copy, getter=namespace) OFString *ns; @property (copy) OFString *defaultNamespace; @property (readonly, copy) OFArray *attributes; @property (readonly, copy) OFArray *children; #endif