summaryrefslogtreecommitdiff
path: root/src/html/html_options_collection.c
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
commit7b193ec6c254488870c0360a2a5bf004d1d848b4 (patch)
tree8b666110763d6da3297d19a020b9eb5279caf051 /src/html/html_options_collection.c
parent941e2f52a2b3d4bf0febeff73301c89aab625ae0 (diff)
downloadlibdom-7b193ec6c254488870c0360a2a5bf004d1d848b4.tar.gz
libdom-7b193ec6c254488870c0360a2a5bf004d1d848b4.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_options_collection.c')
-rw-r--r--src/html/html_options_collection.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/html/html_options_collection.c b/src/html/html_options_collection.c
index b24d3a2..918d693 100644
--- a/src/html/html_options_collection.c
+++ b/src/html/html_options_collection.c
@@ -13,7 +13,6 @@
#include "html/html_options_collection.h"
#include "core/node.h"
-#include "core/document.h"
#include "core/element.h"
#include "core/string.h"
#include "utils/utils.h"
@@ -31,7 +30,7 @@
* \param col The result collection object
* \return DOM_NO_ERR on success, appropriate dom_exception on failure.
*/
-dom_exception _dom_html_options_collection_create(struct dom_document *doc,
+dom_exception _dom_html_options_collection_create(struct dom_html_document *doc,
struct dom_node_internal *root,
dom_callback_is_in_collection ic,
struct dom_html_options_collection **col)
@@ -53,7 +52,7 @@ dom_exception _dom_html_options_collection_create(struct dom_document *doc,
* belongs to the collection
* \return DOM_NO_ERR on success.
*/
-dom_exception _dom_html_options_collection_initialise(struct dom_document *doc,
+dom_exception _dom_html_options_collection_initialise(struct dom_html_document *doc,
struct dom_html_options_collection *col,
struct dom_node_internal *root,
dom_callback_is_in_collection ic)