summaryrefslogtreecommitdiff
path: root/src/core/nodelist.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/nodelist.h')
-rw-r--r--src/core/nodelist.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/nodelist.h b/src/core/nodelist.h
index e80c0ba..9629d03 100644
--- a/src/core/nodelist.h
+++ b/src/core/nodelist.h
@@ -19,13 +19,13 @@ struct dom_string;
/* Create a nodelist */
dom_exception dom_nodelist_create(struct dom_document *doc,
- struct dom_node *root, struct dom_string *tagname,
+ struct dom_node_internal *root, struct dom_string *tagname,
struct dom_string *namespace, struct dom_string *localname,
struct dom_nodelist **list);
/* Match a nodelist instance against a set of nodelist creation parameters */
-bool dom_nodelist_match(struct dom_nodelist *list, struct dom_node *root,
- struct dom_string *tagname, struct dom_string *namespace,
- struct dom_string *localname);
+bool dom_nodelist_match(struct dom_nodelist *list,
+ struct dom_node_internal *root, struct dom_string *tagname,
+ struct dom_string *namespace, struct dom_string *localname);
#endif