@@ -70,16 +70,16 @@ * an OFMalformedXMLException. * * @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 ns The namespace of the close tag + * @param namespace The namespace of the close tag */ - (void)elementBuilder: (OFXMLElementBuilder*)builder didNotExpectCloseTag: (OFString*)name prefix: (OFString*)prefix - namespace: (OFString*)ns; + namespace: (OFString*)namespace; /*! * @brief This callback is called when the XML parser for the element builder * found an unknown entity. * @@ -99,12 +99,12 @@ * first parsing stuff using the OFXMLParser with another delegate and then * setting the OFXMLElementBuilder as delegate for the parser. */ @interface OFXMLElementBuilder: OFObject { - OFMutableArray *stack; - id delegate; + OFMutableArray *_stack; + id _delegate; } #ifdef OF_HAVE_PROPERTIES @property (assign) id delegate; #endif