From 229af12d7ab2c071a6888eb8ffc49bb0bbeb9ddd Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Thu, 26 Aug 2010 23:00:23 +0000 Subject: Sync with modified libwapcaplet API: 11 additional DOM Level1 testsuite failures. Most importantly, it actually compiles now. svn path=/trunk/dom/; revision=10717 --- src/bootstrap/implementation.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/bootstrap') diff --git a/src/bootstrap/implementation.c b/src/bootstrap/implementation.c index bb0e125..6b9dcd7 100644 --- a/src/bootstrap/implementation.c +++ b/src/bootstrap/implementation.c @@ -51,14 +51,14 @@ static dom_exception impl_implementation_create_document_type( 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); static dom_exception impl_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); static dom_exception impl_implementation_get_feature( @@ -210,7 +210,7 @@ dom_exception impl_implementation_create_document_type( 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) { struct dom_document_type *d; @@ -232,7 +232,7 @@ dom_exception impl_implementation_create_document_type( /* Create the doctype */ err = dom_document_type_create(qname, public_id, system_id, - alloc, pw, ctx, &d); + alloc, pw, &d); if (err != DOM_NO_ERR) return err; @@ -286,7 +286,7 @@ dom_exception impl_implementation_create_document( 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) { @@ -308,7 +308,7 @@ dom_exception impl_implementation_create_document( } /* Create document object */ - err = dom_document_create(impl, alloc, pw, ctx, daf, &d); + err = dom_document_create(impl, alloc, pw, daf, &d); if (err != DOM_NO_ERR) return err; -- cgit v1.2.3