fix disabled javascript function signature

This commit is contained in:
Vincent Sanders 2012-12-03 17:53:14 +00:00
parent 70ece8a428
commit 878fe3e68c
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ bool js_exec(jscontext *ctx, const char *txt, size_t txtlen)
return true;
}
bool js_fire_event(jscontext *ctx, const char *type, void *target)
bool js_fire_event(jscontext *ctx, const char *type, struct dom_document *doc, struct dom_node *target)
{
return true;
}