summaryrefslogtreecommitdiff
path: root/content/handlers/html/html.c
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2019-12-01 09:55:53 +0000
committerMichael Drake <michael.drake@codethink.co.uk>2019-12-01 21:25:46 +0000
commit12fd5ddd69500f504735d458093fe41e3da40a49 (patch)
treec5dc9eefe648dbb47691235afcd5aded7acab44b /content/handlers/html/html.c
parentc4919105baf663ae3cd8fa79e303eca032b11a33 (diff)
downloadnetsurf-12fd5ddd69500f504735d458093fe41e3da40a49.tar.gz
netsurf-12fd5ddd69500f504735d458093fe41e3da40a49.tar.bz2
HTML: Rename fire_dom_event to fire_generic_dom_event.
Diffstat (limited to 'content/handlers/html/html.c')
-rw-r--r--content/handlers/html/html.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/handlers/html/html.c b/content/handlers/html/html.c
index 631045a1e..c66d2aca1 100644
--- a/content/handlers/html/html.c
+++ b/content/handlers/html/html.c
@@ -78,8 +78,8 @@ static const char *html_types[] = {
};
/* Exported interface, see html_internal.h */
-bool fire_dom_event(dom_string *type, dom_node *target,
- bool bubbles, bool cancelable)
+bool fire_generic_dom_event(dom_string *type, dom_node *target,
+ bool bubbles, bool cancelable)
{
dom_exception exc;
dom_event *evt;