summaryrefslogtreecommitdiff
path: root/src/html/html_link_element.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
commitca2566cbd69530e91f80b763beef011481d6cf94 (patch)
tree8b666110763d6da3297d19a020b9eb5279caf051 /src/html/html_link_element.c
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_link_element.c')
-rw-r--r--src/html/html_link_element.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/html/html_link_element.c b/src/html/html_link_element.c
index 35362c6..eb826ce 100644
--- a/src/html/html_link_element.c
+++ b/src/html/html_link_element.c
@@ -12,7 +12,6 @@
#include "core/node.h"
#include "core/attr.h"
-#include "core/document.h"
#include "utils/utils.h"
static struct dom_element_protected_vtable _protect_vtable = {
@@ -29,7 +28,7 @@ static struct dom_element_protected_vtable _protect_vtable = {
* \param ele The returned element object
* \return DOM_NO_ERR on success, appropriate dom_exception on failure.
*/
-dom_exception _dom_html_link_element_create(struct dom_document *doc,
+dom_exception _dom_html_link_element_create(struct dom_html_document *doc,
struct dom_html_link_element **ele)
{
*ele = malloc(sizeof(dom_html_link_element));
@@ -51,7 +50,7 @@ dom_exception _dom_html_link_element_create(struct dom_document *doc,
* \param ele The dom_html_link_element object
* \return DOM_NO_ERR on success, appropriate dom_exception on failure.
*/
-dom_exception _dom_html_link_element_initialise(struct dom_document *doc,
+dom_exception _dom_html_link_element_initialise(struct dom_html_document *doc,
struct dom_html_link_element *ele)
{
dom_string *name = NULL;