summaryrefslogtreecommitdiff
path: root/include/dom/core/element.h
diff options
context:
space:
mode:
authorBo Yang <struggleyb.nku@gmail.com>2009-08-11 11:17:23 +0000
committerBo Yang <struggleyb.nku@gmail.com>2009-08-11 11:17:23 +0000
commit399da01ae4eb5c5e3e9349bacc2063c946c3d4a1 (patch)
tree433c8bcde94fc7a6e6f2e5cbf23842a84db98146 /include/dom/core/element.h
parenteec057c7437e19b59ca1e698ce548cb56ce37240 (diff)
downloadlibdom-399da01ae4eb5c5e3e9349bacc2063c946c3d4a1.tar.gz
libdom-399da01ae4eb5c5e3e9349bacc2063c946c3d4a1.tar.bz2
Merge the branches/struggleyb/libdom-remain back to trunk.
svn path=/trunk/dom/; revision=9191
Diffstat (limited to 'include/dom/core/element.h')
-rw-r--r--include/dom/core/element.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/dom/core/element.h b/include/dom/core/element.h
index c56e32c..4cffa2c 100644
--- a/include/dom/core/element.h
+++ b/include/dom/core/element.h
@@ -46,8 +46,9 @@ typedef struct dom_element_vtable {
struct dom_nodelist **result);
dom_exception (*dom_element_get_attribute_ns)(
struct dom_element *element,
- struct dom_string *namespace,
- struct dom_string *localname, struct dom_string **value);
+ struct dom_string *namespace,
+ struct dom_string *localname,
+ struct dom_string **value);
dom_exception (*dom_element_set_attribute_ns)(
struct dom_element *element,
struct dom_string *namespace, struct dom_string *qname,
@@ -211,7 +212,7 @@ static inline dom_exception dom_element_remove_attribute_ns(
dom_element_remove_attribute_ns(element, namespace,
localname);
}
-#define dom_element_remove_attribute_ns(e, n, l, v) \
+#define dom_element_remove_attribute_ns(e, n, l) \
dom_element_remove_attribute_ns((dom_element *) (e), \
(struct dom_string *) (n), (struct dom_string *) (l))