@@ -133,27 +133,27 @@ /** * Adds the specified attribute. * * \param attr The attribute to add */ -- addAttribute: (OFXMLAttribute*)attr; +- (void)addAttribute: (OFXMLAttribute*)attr; /** * Adds the specified attribute with the specified value. * * \param name The name of the attribute * \param value The value of the attribute */ -- addAttributeWithName: (OFString*)name - stringValue: (OFString*)value; +- (void)addAttributeWithName: (OFString*)name + stringValue: (OFString*)value; /** * Adds a child to the OFXMLElement. * * \param child Another OFXMLElement which is added as a child */ -- addChild: (OFXMLElement*)child; +- (void)addChild: (OFXMLElement*)child; @end /** * \brief A category to escape strings for use in an XML document. */ @@ -161,7 +161,7 @@ /** * Escapes a string for use in an XML document. * * \return A new autoreleased string */ -- stringByXMLEscaping; +- (OFString*)stringByXMLEscaping; @end