From 04ca17132485801786e0555c31edf9d4ca82f2eb Mon Sep 17 00:00:00 2001 From: John-Mark Bell Date: Mon, 31 Dec 2012 00:25:29 +0000 Subject: Fix dom_node_set_text_content. --- include/dom/core/node.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/dom/core/node.h b/include/dom/core/node.h index 668206f..35be6f0 100644 --- a/include/dom/core/node.h +++ b/include/dom/core/node.h @@ -481,7 +481,7 @@ static inline dom_exception dom_node_set_text_content(struct dom_node *node, return ((dom_node_vtable *) node->vtable)->dom_node_set_text_content( (dom_node_internal *) node, content); } -#define dom_node_set_text_content(n, c) dom_node_get_text_content( \ +#define dom_node_set_text_content(n, c) dom_node_set_text_content( \ (dom_node *) (n), (c)) static inline dom_exception dom_node_is_same(struct dom_node *node, -- cgit v1.2.3