summaryrefslogtreecommitdiff
path: root/bindings/hubbub
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2011-04-07 23:28:32 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2011-04-07 23:28:32 +0000
commit4ade8ad1c7b23e6eeeee6681acbdb43fb10cab43 (patch)
tree545dfc0006eeddcd000a1071c7c62afe3e47e5b5 /bindings/hubbub
parentd24960dac782ef8e54ed91692f6aec1dd6d08bc1 (diff)
downloadlibdom-4ade8ad1c7b23e6eeeee6681acbdb43fb10cab43.tar.gz
libdom-4ade8ad1c7b23e6eeeee6681acbdb43fb10cab43.tar.bz2
s/struct dom_string/dom_string/g
svn path=/trunk/libdom/; revision=12172
Diffstat (limited to 'bindings/hubbub')
-rw-r--r--bindings/hubbub/parser.c8
1 files changed, 4 insertions, 4 deletions
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);