Commit dfd32a33 authored by Gabriel Ivăncescu's avatar Gabriel Ivăncescu Committed by Alexandre Julliard

mshtml: Make all event target vtbls const.

parent 4e08d7e2
...@@ -365,7 +365,7 @@ static IHTMLEventObj *DocumentType_set_current_event(DispatchEx *dispex, IHTMLEv ...@@ -365,7 +365,7 @@ static IHTMLEventObj *DocumentType_set_current_event(DispatchEx *dispex, IHTMLEv
return default_set_current_event(This->node.doc->window, event); return default_set_current_event(This->node.doc->window, event);
} }
static event_target_vtbl_t DocumentType_event_target_vtbl = { static const event_target_vtbl_t DocumentType_event_target_vtbl = {
{ {
NULL, NULL,
}, },
......
...@@ -1592,7 +1592,7 @@ static void HTMLXMLHttpRequest_init_dispex_info(dispex_data_t *info, compat_mode ...@@ -1592,7 +1592,7 @@ static void HTMLXMLHttpRequest_init_dispex_info(dispex_data_t *info, compat_mode
compat_mode < COMPAT_MODE_IE11 ? private_ie10_hooks : NULL); compat_mode < COMPAT_MODE_IE11 ? private_ie10_hooks : NULL);
} }
static event_target_vtbl_t HTMLXMLHttpRequest_event_target_vtbl = { static const event_target_vtbl_t HTMLXMLHttpRequest_event_target_vtbl = {
{ {
HTMLXMLHttpRequest_destructor, HTMLXMLHttpRequest_destructor,
HTMLXMLHttpRequest_unlink HTMLXMLHttpRequest_unlink
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment