@@ -56,11 +56,11 @@ static OF_INLINE void resolve_attr_namespace(OFXMLAttribute *attr, OFString *prefix, OFString *ns, OFArray *namespaces, Class isa) { OFString *attr_ns; - OFString *attr_prefix = attr->namespace; + OFString *attr_prefix = attr->ns; if (attr_prefix == nil) return; attr_ns = namespace_for_prefix(attr_prefix, namespaces); @@ -67,12 +67,12 @@ if ((attr_prefix != nil && attr_ns == nil)) @throw [OFUnboundNamespaceException newWithClass: isa prefix: attr_prefix]; - [attr->namespace release]; - attr->namespace = [attr_ns retain]; + [attr->ns release]; + attr->ns = [attr_ns retain]; } @implementation OFXMLParser + parser {