summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJames Shaw <jshaw@netsurf-browser.org>2007-08-03 23:11:31 +0000
committerJames Shaw <jshaw@netsurf-browser.org>2007-08-03 23:11:31 +0000
commitbcab58d01ae59e35e8d513cf4adf7a52985f7716 (patch)
treee018dee2469347f4c1ca26ddea6a1c7d345a7e50 /include
parent74591c9089ef1db54a3621c16c00097d456633c3 (diff)
downloadlibdom-bcab58d01ae59e35e8d513cf4adf7a52985f7716.tar.gz
libdom-bcab58d01ae59e35e8d513cf4adf7a52985f7716.tar.bz2
Fix structure name dom_nodelist
svn path=/trunk/dom/; revision=3474
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 e566622..8e3ccf9 100644
--- a/include/dom/core/node.h
+++ b/include/dom/core/node.h
@@ -15,7 +15,7 @@
struct dom_document;
struct dom_node;
-struct dom_node_list;
+struct dom_nodelist;
struct dom_named_node_map;
struct dom_string;
@@ -85,7 +85,7 @@ dom_exception dom_node_get_node_type(struct dom_node *node,
dom_exception dom_node_get_parent_node(struct dom_node *node,
struct dom_node **result);
dom_exception dom_node_get_child_nodes(struct dom_node *node,
- struct dom_node_list **result);
+ struct dom_nodelist **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,