summaryrefslogtreecommitdiff
path: root/src/html/html_document.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2013-02-19 23:27:10 +0000
committerVincent Sanders <vince@kyllikki.org>2013-02-19 23:27:10 +0000
commit081cf689356ef9138b67da2c687883b9c3354a63 (patch)
treec482500d137ff527279e15f1167ac3d2022fb013 /src/html/html_document.c
parentf7ae4017ff50be5ef4eb3047ebbff4820550d5ed (diff)
downloadlibdom-081cf689356ef9138b67da2c687883b9c3354a63.tar.gz
libdom-081cf689356ef9138b67da2c687883b9c3354a63.tar.bz2
add context for default action function
Diffstat (limited to 'src/html/html_document.c')
-rw-r--r--src/html/html_document.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/html/html_document.c b/src/html/html_document.c
index cec4526..e248e17 100644
--- a/src/html/html_document.c
+++ b/src/html/html_document.c
@@ -50,6 +50,7 @@ static struct dom_node_protect_vtable html_document_protect_vtable = {
/* Create a HTMLDocument */
dom_exception _dom_html_document_create(
dom_events_default_action_fetcher daf,
+ void *daf_ctx,
dom_html_document **doc)
{
dom_exception error;
@@ -62,7 +63,7 @@ dom_exception _dom_html_document_create(
result->base.base.base.vtable = &html_document_vtable;
result->base.base.vtable = &html_document_protect_vtable;
- error = _dom_html_document_initialise(result, daf);
+ error = _dom_html_document_initialise(result, daf, daf_ctx);
if (error != DOM_NO_ERR) {
free(result);
return error;
@@ -74,12 +75,13 @@ dom_exception _dom_html_document_create(
/* Initialise a HTMLDocument */
dom_exception _dom_html_document_initialise(dom_html_document *doc,
- dom_events_default_action_fetcher daf)
+ dom_events_default_action_fetcher daf,
+ void *daf_ctx)
{
dom_exception error;
int sidx;
- error = _dom_document_initialise(&doc->base, daf);
+ error = _dom_document_initialise(&doc->base, daf, daf_ctx);
if (error != DOM_NO_ERR)
return error;