summaryrefslogtreecommitdiff
path: root/src/html/html_link_element.c
diff options
context:
space:
mode:
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;