From 05a3cf37e14017a3593ed9e17e4a83b003ef29d6 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Thu, 7 Apr 2011 23:28:32 +0000 Subject: s/struct dom_string/dom_string/g svn path=/trunk/libdom/; revision=12172 --- bindings/hubbub/parser.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bindings/hubbub') diff --git a/bindings/hubbub/parser.c b/bindings/hubbub/parser.c index 9df238f..ad234e8 100644 --- a/bindings/hubbub/parser.c +++ b/bindings/hubbub/parser.c @@ -283,7 +283,7 @@ static hubbub_error create_comment(void *parser, const hubbub_string *data, { dom_hubbub_parser *dom_parser = (dom_hubbub_parser *) parser; dom_exception err; - struct dom_string *str; + dom_string *str; struct dom_comment *comment; *result = NULL; @@ -386,7 +386,7 @@ static hubbub_error create_element(void *parser, const hubbub_tag *tag, { dom_hubbub_parser *dom_parser = (dom_hubbub_parser *) parser; dom_exception err; - struct dom_string *name; + dom_string *name; struct dom_element *element = NULL; hubbub_error herr; @@ -443,7 +443,7 @@ static hubbub_error create_text(void *parser, const hubbub_string *data, { dom_hubbub_parser *dom_parser = (dom_hubbub_parser *) parser; dom_exception err; - struct dom_string *str; + dom_string *str; struct dom_text *text = NULL; *result = NULL; @@ -690,7 +690,7 @@ static hubbub_error add_attributes(void *parser, void *node, uint32_t i; for (i = 0; i < n_attributes; i++) { - struct dom_string *name, *value; + dom_string *name, *value; err = dom_string_create(dom_parser->alloc, dom_parser->pw, attributes[i].name.ptr, attributes[i].name.len, &name); -- cgit v1.2.3