From: Gabriel Ivăncescu <gabrielopcode(a)gmail.com> Signed-off-by: Gabriel Ivăncescu <gabrielopcode(a)gmail.com> --- dlls/mshtml/dispex.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/dlls/mshtml/dispex.c b/dlls/mshtml/dispex.c index 49ed4790d94..2f722c9eccc 100644 --- a/dlls/mshtml/dispex.c +++ b/dlls/mshtml/dispex.c @@ -1134,13 +1134,9 @@ static const dispex_static_data_vtbl_t function_dispex_vtbl = { .invoke = function_invoke }; -static const tid_t function_iface_tids[] = {0}; - static dispex_static_data_t function_dispex = { - "Function", - &function_dispex_vtbl, - NULL_tid, - function_iface_tids + .name = "Function", + .vtbl = &function_dispex_vtbl, }; static func_disp_t *create_func_disp(DispatchEx *obj, func_info_t *info) -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/6515