summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJames Shaw <jshaw@netsurf-browser.org>2007-08-08 20:33:12 +0000
committerJames Shaw <jshaw@netsurf-browser.org>2007-08-08 20:33:12 +0000
commitb36a86e96d18acfa046b6bdf2983cc6b779793c9 (patch)
tree60b374667777ae5a7f35d9a6b15b409e26933757 /include
parentbcab58d01ae59e35e8d513cf4adf7a52985f7716 (diff)
downloadlibdom-b36a86e96d18acfa046b6bdf2983cc6b779793c9.tar.gz
libdom-b36a86e96d18acfa046b6bdf2983cc6b779793c9.tar.bz2
Rename dom_named_node_map to dom_namednodemap to be consistent with the rest of the code
svn path=/trunk/dom/; revision=3489
Diffstat (limited to 'include')
-rw-r--r--include/dom/core/node.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/dom/core/node.h b/include/dom/core/node.h
index 8e3ccf9..3968b65 100644
--- a/include/dom/core/node.h
+++ b/include/dom/core/node.h
@@ -16,7 +16,7 @@
struct dom_document;
struct dom_node;
struct dom_nodelist;
-struct dom_named_node_map;
+struct dom_namednodemap;
struct dom_string;
/**
@@ -95,7 +95,7 @@ dom_exception dom_node_get_previous_sibling(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);
+ struct dom_namednodemap **result);
dom_exception dom_node_get_owner_document(struct dom_node *node,
struct dom_document **result);
dom_exception dom_node_insert_before(struct dom_node *node,