summaryrefslogtreecommitdiff
path: root/include/dom/html/html_collection.h
diff options
context:
space:
mode:
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);