summaryrefslogtreecommitdiff
path: root/include/dom/core/node.h
diff options
context:
space:
mode:
authorJames Shaw <jshaw@netsurf-browser.org>2007-07-21 22:29:48 +0000
committerJames Shaw <jshaw@netsurf-browser.org>2007-07-21 22:29:48 +0000
commit037cfd7e4e8d63d9bb15415e7d76fa7dc5634c20 (patch)
tree7f9b2691b855fe2a1b5f4870ecfa044e5542ab73 /include/dom/core/node.h
parent71dde22f39683ce8b1dceb402a965246d13fd91f (diff)
downloadlibdom-037cfd7e4e8d63d9bb15415e7d76fa7dc5634c20.tar.gz
libdom-037cfd7e4e8d63d9bb15415e7d76fa7dc5634c20.tar.bz2
More name changes for consistency with spec
svn path=/trunk/dom/; revision=3455
Diffstat (limited to 'include/dom/core/node.h')
-rw-r--r--include/dom/core/node.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/dom/core/node.h b/include/dom/core/node.h
index 71baa79..7db34f6 100644
--- a/include/dom/core/node.h
+++ b/include/dom/core/node.h
@@ -79,17 +79,17 @@ dom_exception dom_node_set_node_value(struct dom_node *node,
struct dom_string *value);
dom_exception dom_node_get_node_type(struct dom_node *node,
dom_node_type *result);
-dom_exception dom_node_get_parent(struct dom_node *node,
+dom_exception dom_node_get_parent_node(struct dom_node *node,
struct dom_node **result);
-dom_exception dom_node_get_children(struct dom_node *node,
+dom_exception dom_node_get_child_nodes(struct dom_node *node,
struct dom_node_list **result);
dom_exception dom_node_get_first_child(struct dom_node *node,
struct dom_node **result);
dom_exception dom_node_get_last_child(struct dom_node *node,
struct dom_node **result);
-dom_exception dom_node_get_previous(struct dom_node *node,
+dom_exception dom_node_get_previous_sibling(struct dom_node *node,
struct dom_node **result);
-dom_exception dom_node_get_next(struct dom_node *node,
+dom_exception dom_node_get_next_sibling(struct dom_node *node,
struct dom_node **result);
dom_exception dom_node_get_attributes(struct dom_node *node,
struct dom_named_node_map **result);
@@ -107,8 +107,8 @@ dom_exception dom_node_remove_child(struct dom_node *node,
dom_exception dom_node_append_child(struct dom_node *node,
struct dom_node *new_child,
struct dom_node **result);
-dom_exception dom_node_has_children(struct dom_node *node, bool *result);
-dom_exception dom_node_clone(struct dom_node *node, bool deep,
+dom_exception dom_node_has_child_nodes(struct dom_node *node, bool *result);
+dom_exception dom_node_clone_node(struct dom_node *node, bool deep,
struct dom_node **result);
dom_exception dom_node_normalize(struct dom_node *node);
dom_exception dom_node_is_supported(struct dom_node *node,