Gitweb links:
...log
http://git.netsurf-browser.org/libdom.git/shortlog/04ca17132485801786e055...
...commit
http://git.netsurf-browser.org/libdom.git/commit/04ca17132485801786e0555c...
...tree
http://git.netsurf-browser.org/libdom.git/tree/04ca17132485801786e0555c31...
The branch, master has been updated
via 04ca17132485801786e0555c31edf9d4ca82f2eb (commit)
from 7e8a1f4f60bd8189f097517b04d3f0a81f36324a (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/libdom.git/commitdiff/04ca17132485801786e0...
commit 04ca17132485801786e0555c31edf9d4ca82f2eb
Author: John-Mark Bell <jmb(a)netsurf-browser.org>
Commit: John-Mark Bell <jmb(a)netsurf-browser.org>
Fix dom_node_set_text_content.
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,
-----------------------------------------------------------------------
Summary of changes:
include/dom/core/node.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
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,
--
Document Object Model library