summaryrefslogtreecommitdiff
path: root/src/core/implementation.c
diff options
context:
space:
mode:
authorBo Yang <struggleyb.nku@gmail.com>2009-08-13 09:33:24 +0000
committerBo Yang <struggleyb.nku@gmail.com>2009-08-13 09:33:24 +0000
commit7d9fffe1fa883aa06509dbb71a1c34b6b91e15e6 (patch)
tree19c55b39d97567a37b88b49aaaac13b21b9f24ee /src/core/implementation.c
parentf34ead9b8cfe3e518868323cf5ac715f41aa1ef7 (diff)
downloadlibdom-7d9fffe1fa883aa06509dbb71a1c34b6b91e15e6.tar.gz
libdom-7d9fffe1fa883aa06509dbb71a1c34b6b91e15e6.tar.bz2
Merge the Events module (branches/struggleyb/libdom-events) back to trunk. :)
svn path=/trunk/dom/; revision=9236
Diffstat (limited to 'src/core/implementation.c')
-rw-r--r--src/core/implementation.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/implementation.c b/src/core/implementation.c
index e2b6763..30e1eb3 100644
--- a/src/core/implementation.c
+++ b/src/core/implementation.c
@@ -122,10 +122,11 @@ dom_exception dom_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_events_default_action_fetcher daf,
struct dom_document **doc)
{
return impl->create_document(impl, namespace, qname, doctype, alloc,
- pw, ctx, doc);
+ pw, ctx, daf, doc);
}
/**