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/document_event.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'include/dom/events/document_event.h') diff --git a/include/dom/events/document_event.h b/include/dom/events/document_event.h index be0646f..bbb9f83 100644 --- a/include/dom/events/document_event.h +++ b/include/dom/events/document_event.h @@ -11,8 +11,8 @@ #include #include +#include -struct dom_string; struct dom_event; struct dom_document; struct lwc_string_s; @@ -84,17 +84,17 @@ typedef dom_default_action_callback (*dom_events_default_action_fetcher) void **pw); dom_exception _dom_document_event_create_event(dom_document_event *de, - struct dom_string *type, struct dom_event **evt); + dom_string *type, struct dom_event **evt); #define dom_document_event_create_event(d, t, e) \ _dom_document_event_create_event((dom_document_event *) (d), \ - (struct dom_string *) (t), (struct dom_event **) (e)) + (dom_string *) (t), (struct dom_event **) (e)) dom_exception _dom_document_event_can_dispatch(dom_document_event *de, - struct dom_string *namespace, struct dom_string *type, + dom_string *namespace, dom_string *type, bool* can); #define dom_document_event_can_dispatch(d, n, t, c) \ _dom_document_event_can_dispatch((dom_document_event *) (d), \ - (struct dom_string *) (n), (struct dom_string *) (t),\ + (dom_string *) (n), (dom_string *) (t),\ (bool *) (c)) #endif -- cgit v1.2.3