summaryrefslogtreecommitdiff
path: root/src/core/implementation.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/implementation.c')
-rw-r--r--src/core/implementation.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/implementation.c b/src/core/implementation.c
index 30e1eb3..6713060 100644
--- a/src/core/implementation.c
+++ b/src/core/implementation.c
@@ -77,11 +77,11 @@ dom_exception dom_implementation_has_feature(
dom_exception dom_implementation_create_document_type(
struct dom_implementation *impl, struct dom_string *qname,
struct dom_string *public_id, struct dom_string *system_id,
- dom_alloc alloc, void *pw, struct lwc_context_s *ctx,
+ dom_alloc alloc, void *pw,
struct dom_document_type **doctype)
{
return impl->create_document_type(impl, qname, public_id, system_id,
- alloc, pw, ctx, doctype);
+ alloc, pw, doctype);
}
/**
@@ -121,12 +121,12 @@ dom_exception dom_implementation_create_document(
struct dom_implementation *impl,
struct dom_string *namespace, struct dom_string *qname,
struct dom_document_type *doctype,
- dom_alloc alloc, void *pw, struct lwc_context_s *ctx,
+ dom_alloc alloc, void *pw,
dom_events_default_action_fetcher daf,
struct dom_document **doc)
{
return impl->create_document(impl, namespace, qname, doctype, alloc,
- pw, ctx, daf, doc);
+ pw, daf, doc);
}
/**