summaryrefslogtreecommitdiff
path: root/src/events/dispatch.h
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2012-11-03 22:10:17 +0000
committerDaniel Silverstone <dsilvers@digital-scurf.org>2012-11-03 22:10:17 +0000
commitc27dd9093614b9df998f994ee2fe530782e1d890 (patch)
treefaa6ebabb6a11b53778a859d593110ab7ea00618 /src/events/dispatch.h
parent45048d167c9f1e9ca31317ce19a3e9ca23968d07 (diff)
downloadlibdom-c27dd9093614b9df998f994ee2fe530782e1d890.tar.gz
libdom-c27dd9093614b9df998f994ee2fe530782e1d890.tar.bz2
Remove ability to dispatch a generic event as a ptr+len, and memoise all previous callsites
Diffstat (limited to 'src/events/dispatch.h')
-rw-r--r--src/events/dispatch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/events/dispatch.h b/src/events/dispatch.h
index 632fc98..56f6930 100644
--- a/src/events/dispatch.h
+++ b/src/events/dispatch.h
@@ -71,7 +71,7 @@ dom_exception __dom_dispatch_subtree_modified_event(dom_document *doc,
/* Dispatch a generic event */
dom_exception _dom_dispatch_generic_event(dom_document *doc,
- dom_event_target *et, const uint8_t *name, size_t len,
+ dom_event_target *et, dom_string *event_name,
bool bubble, bool cancelable, bool *success);
#endif