summaryrefslogtreecommitdiff
path: root/src/html/html_link_element.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/html/html_link_element.h')
-rw-r--r--src/html/html_link_element.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/src/html/html_link_element.h b/src/html/html_link_element.h
index 613665b..23abd33 100644
--- a/src/html/html_link_element.h
+++ b/src/html/html_link_element.h
@@ -26,29 +26,24 @@ dom_exception _dom_html_link_element_initialise(struct dom_document *doc,
struct dom_html_link_element *ele);
/* Finalise a dom_html_link_element object */
-void _dom_html_link_element_finalise(struct dom_document *doc,
- struct dom_html_link_element *ele);
+void _dom_html_link_element_finalise(struct dom_html_link_element *ele);
/* Destroy a dom_html_link_element object */
-void _dom_html_link_element_destroy(struct dom_document *doc,
- struct dom_html_link_element *ele);
+void _dom_html_link_element_destroy(struct dom_html_link_element *ele);
/* The protected virtual functions */
dom_exception _dom_html_link_element_parse_attribute(dom_element *ele,
dom_string *name, dom_string *value,
dom_string **parsed);
void _dom_virtual_html_link_element_destroy(dom_node_internal *node);
-dom_exception _dom_html_link_element_alloc(struct dom_document *doc,
- struct dom_node_internal *n, struct dom_node_internal **ret);
-dom_exception _dom_html_link_element_copy(struct dom_node_internal *new,
- struct dom_node_internal *old);
+dom_exception _dom_html_link_element_copy(dom_node_internal *old,
+ dom_node_internal **copy);
#define DOM_HTML_LINK_ELEMENT_PROTECT_VTABLE \
_dom_html_link_element_parse_attribute
#define DOM_NODE_PROTECT_VTABLE_HTML_LINK_ELEMENT \
_dom_virtual_html_link_element_destroy, \
- _dom_html_link_element_alloc, \
_dom_html_link_element_copy
#endif