From: Gabriel Ivăncescu gabrielopcode@gmail.com
Signed-off-by: Gabriel Ivăncescu gabrielopcode@gmail.com --- dlls/mshtml/htmllocation.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/dlls/mshtml/htmllocation.c b/dlls/mshtml/htmllocation.c index b176b56280c..91ca17946f3 100644 --- a/dlls/mshtml/htmllocation.c +++ b/dlls/mshtml/htmllocation.c @@ -605,10 +605,10 @@ static const tid_t HTMLLocation_iface_tids[] = { 0 }; static dispex_static_data_t HTMLLocation_dispex = { - "Location", - &HTMLLocation_dispex_vtbl, - DispHTMLLocation_tid, - HTMLLocation_iface_tids + .name = "Location", + .vtbl = &HTMLLocation_dispex_vtbl, + .disp_tid = DispHTMLLocation_tid, + .iface_tids = HTMLLocation_iface_tids };
HRESULT create_location(HTMLOuterWindow *window, HTMLLocation **ret)