summaryrefslogtreecommitdiff
path: root/include/dom/core/attr.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2007-07-11 01:25:16 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2007-07-11 01:25:16 +0000
commit55a744d439f54289c6e470e46ec45a75c6d8478b (patch)
treea306d188729bf3f2b9275d8f7440ef3909a2bf17 /include/dom/core/attr.h
parenta036dfb0d375b0c8c7dd014ad224f0980b09793c (diff)
downloadlibdom-55a744d439f54289c6e470e46ec45a75c6d8478b.tar.gz
libdom-55a744d439f54289c6e470e46ec45a75c6d8478b.tar.bz2
Fix TypeInfo -> type_info conversion
svn path=/trunk/dom/; revision=3399
Diffstat (limited to 'include/dom/core/attr.h')
-rw-r--r--include/dom/core/attr.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/dom/core/attr.h b/include/dom/core/attr.h
index 8807686..87adfc6 100644
--- a/include/dom/core/attr.h
+++ b/include/dom/core/attr.h
@@ -13,7 +13,7 @@
#include <dom/core/exceptions.h>
struct dom_element;
-struct dom_typeinfo;
+struct dom_type_info;
struct dom_node;
struct dom_attr;
struct dom_string;
@@ -27,8 +27,8 @@ dom_exception dom_attr_set_value(struct dom_attr *attr,
struct dom_string *value);
dom_exception dom_attr_get_owner(struct dom_attr *attr,
struct dom_element **result);
-dom_exception dom_attr_get_typeinfo(struct dom_attr *attr,
- struct dom_typeinfo **result);
+dom_exception dom_attr_get_type_info(struct dom_attr *attr,
+ struct dom_type_info **result);
dom_exception dom_attr_is_id(struct dom_attr *attr, bool *result);
#endif