From 79cc5277280486e9cf81b9e508a40819c62a8e0d Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Mon, 30 Aug 2010 20:17:39 +0000 Subject: Implement DocumentType.name svn path=/trunk/dom/; revision=10726 --- src/core/document_type.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/core/document_type.c b/src/core/document_type.c index 4b07e3f..1c9d0cb 100644 --- a/src/core/document_type.c +++ b/src/core/document_type.c @@ -212,10 +212,7 @@ void _dom_document_type_finalise(struct dom_document_type *doctype) dom_exception _dom_document_type_get_name(struct dom_document_type *doc_type, struct dom_string **result) { - UNUSED(doc_type); - UNUSED(result); - - return DOM_NOT_SUPPORTED_ERR; + return dom_node_get_node_name(doc_type, result); } /** -- cgit v1.2.3