From b657c277f517f4ab0a4da21e4f8c4cb6f8f53013 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Mon, 30 Aug 2010 13:06:19 +0000 Subject: Merge branches/struggleyb/libdom-html to trunk. A few additional fixes to reduce the number of regressions to single figures. svn path=/trunk/dom/; revision=10724 --- src/bootstrap/implementation.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/bootstrap') diff --git a/src/bootstrap/implementation.c b/src/bootstrap/implementation.c index 6b9dcd7..a27edfc 100644 --- a/src/bootstrap/implementation.c +++ b/src/bootstrap/implementation.c @@ -23,6 +23,7 @@ #include #include "core/node.h" +#include "core/document.h" #include "core/document_type.h" #include "utils/utils.h" @@ -231,7 +232,7 @@ dom_exception impl_implementation_create_document_type( return DOM_NAMESPACE_ERR; /* Create the doctype */ - err = dom_document_type_create(qname, public_id, system_id, + err = _dom_document_type_create(qname, public_id, system_id, alloc, pw, &d); if (err != DOM_NO_ERR) return err; @@ -308,7 +309,7 @@ dom_exception impl_implementation_create_document( } /* Create document object */ - err = dom_document_create(impl, alloc, pw, daf, &d); + err = _dom_document_create(impl, alloc, pw, daf, &d); if (err != DOM_NO_ERR) return err; -- cgit v1.2.3