summaryrefslogtreecommitdiff
path: root/src/html/html_collection.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2012-02-05 14:33:17 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2012-02-05 14:33:17 +0000
commitca2566cbd69530e91f80b763beef011481d6cf94 (patch)
tree8b666110763d6da3297d19a020b9eb5279caf051 /src/html/html_collection.h
parenta67801b6a08dec19e015dd8a68b583ad2b807e0f (diff)
downloadlibdom-ca2566cbd69530e91f80b763beef011481d6cf94.tar.gz
libdom-ca2566cbd69530e91f80b763beef011481d6cf94.tar.bz2
A bunch of panel beating:
* HTMLElement and HTMLDocument now have vtables * All HTML nodes require an HTMLDocument to create * Miscellaneous other cleanups svn path=/trunk/libdom/; revision=13424
Diffstat (limited to 'src/html/html_collection.h')
-rw-r--r--src/html/html_collection.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/html/html_collection.h b/src/html/html_collection.h
index dc9e67d..634d2d3 100644
--- a/src/html/html_collection.h
+++ b/src/html/html_collection.h
@@ -23,7 +23,7 @@ struct dom_html_collection {
* whether some node is an element of
* this collection
*/
- struct dom_document *doc; /**< The document created this
+ struct dom_html_document *doc; /**< The document created this
* collection
*/
struct dom_node_internal *root;
@@ -32,12 +32,12 @@ struct dom_html_collection {
/**< Reference counting */
};
-dom_exception _dom_html_collection_create(struct dom_document *doc,
+dom_exception _dom_html_collection_create(struct dom_html_document *doc,
struct dom_node_internal *root,
dom_callback_is_in_collection ic,
struct dom_html_collection **col);
-dom_exception _dom_html_collection_initialise(struct dom_document *doc,
+dom_exception _dom_html_collection_initialise(struct dom_html_document *doc,
struct dom_html_collection *col,
struct dom_node_internal *root,
dom_callback_is_in_collection ic);