summaryrefslogtreecommitdiff
path: root/include/dom/html/html_element.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2011-04-07 23:28:32 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2011-04-07 23:28:32 +0000
commit4ade8ad1c7b23e6eeeee6681acbdb43fb10cab43 (patch)
tree545dfc0006eeddcd000a1071c7c62afe3e47e5b5 /include/dom/html/html_element.h
parentd24960dac782ef8e54ed91692f6aec1dd6d08bc1 (diff)
downloadlibdom-4ade8ad1c7b23e6eeeee6681acbdb43fb10cab43.tar.gz
libdom-4ade8ad1c7b23e6eeeee6681acbdb43fb10cab43.tar.bz2
s/struct dom_string/dom_string/g
svn path=/trunk/libdom/; revision=12172
Diffstat (limited to 'include/dom/html/html_element.h')
-rw-r--r--include/dom/html/html_element.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/dom/html/html_element.h b/include/dom/html/html_element.h
index 47129fe..ea07c72 100644
--- a/include/dom/html/html_element.h
+++ b/include/dom/html/html_element.h
@@ -16,28 +16,28 @@ typedef struct dom_html_element_vtable {
struct dom_element_vtable base;
dom_exception (*dom_html_element_get_id)(struct dom_html_element *element,
- struct dom_string **id);
+ dom_string **id);
dom_exception (*dom_html_element_set_id)(struct dom_html_element *element,
- struct dom_string *id);
+ dom_string *id);
} dom_html_element_vtable;
static inline dom_exception dom_html_element_get_id(struct dom_html_element *element,
- struct dom_string **id)
+ dom_string **id)
{
return ((dom_html_element_vtable *) ((dom_node *) element)->vtable)->
dom_html_element_get_id(element, id);
}
#define dom_html_element_get_id(e, id) dom_html_element_get_id( \
- (dom_html_element *) (e), (struct dom_string **) (id))
+ (dom_html_element *) (e), (dom_string **) (id))
static inline dom_exception dom_html_element_set_id(struct dom_html_element *element,
- struct dom_string *id)
+ dom_string *id)
{
return ((dom_html_element_vtable *) ((dom_node *) element)->vtable)->
dom_html_element_set_id(element, id);
}
#define dom_html_element_set_id(e, id) dom_html_element_set_id( \
- (dom_html_element *) (e), (struct dom_string *) (id))
+ (dom_html_element *) (e), (dom_string *) (id))
#endif