From 4ade8ad1c7b23e6eeeee6681acbdb43fb10cab43 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Thu, 7 Apr 2011 23:28:32 +0000 Subject: s/struct dom_string/dom_string/g svn path=/trunk/libdom/; revision=12172 --- include/dom/events/mutation_name_event.h | 34 ++++++++++++++++---------------- 1 file changed, 17 insertions(+), 17 deletions(-) (limited to 'include/dom/events/mutation_name_event.h') diff --git a/include/dom/events/mutation_name_event.h b/include/dom/events/mutation_name_event.h index 13d27a4..e0325d7 100644 --- a/include/dom/events/mutation_name_event.h +++ b/include/dom/events/mutation_name_event.h @@ -10,44 +10,44 @@ #include #include +#include -struct dom_string; struct dom_node; typedef struct dom_mutation_name_event dom_mutation_name_event; dom_exception _dom_mutation_name_event_get_prev_namespace( - dom_mutation_name_event *evt, struct dom_string **namespace); + dom_mutation_name_event *evt, dom_string **namespace); #define dom_mutation_name_event_get_prev_namespace(e, n) \ _dom_mutation_name_event_get_prev_namespace(\ - (dom_mutation_name_event *) (e), (struct dom_string **) (n)) + (dom_mutation_name_event *) (e), (dom_string **) (n)) dom_exception _dom_mutation_name_event_get_prev_node_name( - dom_mutation_name_event *evt, struct dom_string **name); + dom_mutation_name_event *evt, dom_string **name); #define dom_mutation_name_event_get_prev_node_name(e, n) \ _dom_mutation_name_event_get_prev_node_name(\ - (dom_mutation_name_event *) (e), (struct dom_string **) (n)) + (dom_mutation_name_event *) (e), (dom_string **) (n)) dom_exception _dom_mutation_name_event_init(dom_mutation_name_event *evt, - struct dom_string *type, bool bubble, bool cancelable, - struct dom_node *node, struct dom_string *prev_ns, - struct dom_string *prev_name); + dom_string *type, bool bubble, bool cancelable, + struct dom_node *node, dom_string *prev_ns, + dom_string *prev_name); #define dom_mutation_name_event_init(e, t, b, c, n, p, pn) \ _dom_mutation_name_event_init((dom_mutation_name_event *) (e), \ - (struct dom_string *) (t), (bool) (b), (bool) (c), \ - (struct dom_node *) (n), (struct dom_string *) (p), \ - (struct dom_string *) (pn)) + (dom_string *) (t), (bool) (b), (bool) (c), \ + (struct dom_node *) (n), (dom_string *) (p), \ + (dom_string *) (pn)) dom_exception _dom_mutation_name_event_init_ns(dom_mutation_name_event *evt, - struct dom_string *namespace, struct dom_string *type, + dom_string *namespace, dom_string *type, bool bubble, bool cancelable, struct dom_node *node, - struct dom_string *prev_ns, struct dom_string *prev_name); + dom_string *prev_ns, dom_string *prev_name); #define dom_mutation_name_event_init_ns(e, n, t, b, c, nv, p, pn) \ _dom_mutation_name_event_init_ns(\ - (dom_mutation_name_event *) (e), (struct dom_string *) (n),\ - (struct dom_string *) (t), (bool) (b), (bool) (c),\ - (struct dom_node *) (nv), (struct dom_string *) (p), \ - (struct dom_string *) (pn)) + (dom_mutation_name_event *) (e), (dom_string *) (n),\ + (dom_string *) (t), (bool) (b), (bool) (c),\ + (struct dom_node *) (nv), (dom_string *) (p), \ + (dom_string *) (pn)) #endif -- cgit v1.2.3