@@ -39,12 +39,12 @@ * with all children. * * @param builder The builder which built an OFXMLElement * @param element The OFXMLElement the OFXMLElementBuilder built */ -- (void)elementBuilder: (OFXMLElementBuilder*)builder - didBuildElement: (OFXMLElement*)element; +- (void)elementBuilder: (OFXMLElementBuilder *)builder + didBuildElement: (OFXMLElement *)element; @optional /*! * @brief This callback is called when the OFXMLElementBuilder built an * OFXMLNode which is not inside an element. @@ -53,12 +53,12 @@ * root element. * * @param builder The builder which built the OFXMLNode without parent * @param node The OFXMLNode the OFXMLElementBuilder built */ -- (void)elementBuilder: (OFXMLElementBuilder*)builder - didBuildParentlessNode: (OFXMLNode*)node; +- (void)elementBuilder: (OFXMLElementBuilder *)builder + didBuildParentlessNode: (OFXMLNode *)node; /*! * @brief This callback is called when the OFXMLElementBuilder gets a close tag * which does not belong there. * @@ -74,25 +74,25 @@ * @param builder The builder which did not expect the close tag * @param name The name of the close tag * @param prefix The prefix of the close tag * @param namespace_ The namespace of the close tag */ -- (void)elementBuilder: (OFXMLElementBuilder*)builder - didNotExpectCloseTag: (OFString*)name - prefix: (nullable OFString*)prefix - namespace: (nullable OFString*)namespace_; +- (void)elementBuilder: (OFXMLElementBuilder *)builder + didNotExpectCloseTag: (OFString *)name + prefix: (nullable OFString *)prefix + namespace: (nullable OFString *)namespace_; /*! * @brief This callback is called when the XML parser for the element builder * found an unknown entity. * * @param builder The element builder which found an unknown entity * @param entity The name of the entity * @return The substitution for the entity */ -- (OFString*)elementBuilder: (OFXMLElementBuilder*)builder - foundUnknownEntityNamed: (OFString*)entity; +- (OFString *)elementBuilder: (OFXMLElementBuilder *)builder + foundUnknownEntityNamed: (OFString *)entity; @end /*! * @class OFXMLElementBuilder OFXMLElementBuilder.h ObjFW/OFXMLElementBuilder.h * @@ -103,11 +103,11 @@ * first parsing stuff using the OFXMLParser with another delegate and then * setting the OFXMLElementBuilder as delegate for the parser. */ @interface OFXMLElementBuilder: OFObject { - OFMutableArray OF_GENERIC(OFXMLElement*) *_stack; + OFMutableArray OF_GENERIC(OFXMLElement *) *_stack; id _delegate; } /*! * The delegate for the OFXMLElementBuilder.