summaryrefslogtreecommitdiff
path: root/include/dom/html/html_collection.h
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 /include/dom/html/html_collection.h
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 'include/dom/html/html_collection.h')
-rw-r--r--include/dom/html/html_collection.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/dom/html/html_collection.h b/include/dom/html/html_collection.h
index 09cf6ed..7322ea8 100644
--- a/include/dom/html/html_collection.h
+++ b/include/dom/html/html_collection.h
@@ -9,9 +9,9 @@
#define dom_html_collection_h_
#include <dom/core/exceptions.h>
+#include <dom/core/string.h>
struct dom_node;
-struct dom_string;
typedef struct dom_html_collection dom_html_collection;
@@ -20,7 +20,7 @@ dom_exception dom_html_collection_get_length(dom_html_collection *col,
dom_exception dom_html_collection_item(dom_html_collection *col,
unsigned long index, struct dom_node **node);
dom_exception dom_html_collection_named_item(dom_html_collection *col,
- struct dom_string *name, struct dom_node **node);
+ dom_string *name, struct dom_node **node);
void dom_html_collection_ref(dom_html_collection *col);
void dom_html_collection_unref(dom_html_collection *col);