mshtml: Make all event target vtbls const.
Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
This commit is contained in:
parent
4e08d7e200
commit
dfd32a332a
2 changed files with 2 additions and 2 deletions
|
@ -365,7 +365,7 @@ static IHTMLEventObj *DocumentType_set_current_event(DispatchEx *dispex, IHTMLEv
|
|||
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,
|
||||
},
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
static event_target_vtbl_t HTMLXMLHttpRequest_event_target_vtbl = {
|
||||
static const event_target_vtbl_t HTMLXMLHttpRequest_event_target_vtbl = {
|
||||
{
|
||||
HTMLXMLHttpRequest_destructor,
|
||||
HTMLXMLHttpRequest_unlink
|
||||
|
|
Loading…
Add table
Reference in a new issue