Connor McAdams : uiautomationcore: Make hwnd_host_provider_vtbl static const.
Module: wine Branch: master Commit: 5a231b0bfc5727fafa0f8cf8c6b754c254b5d1b6 URL: https://source.winehq.org/git/wine.git/?a=commit;h=5a231b0bfc5727fafa0f8cf8c... Author: Connor McAdams <cmcadams(a)codeweavers.com> Date: Thu Apr 28 13:57:36 2022 -0400 uiautomationcore: Make hwnd_host_provider_vtbl static const. Signed-off-by: Connor McAdams <cmcadams(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/uiautomationcore/uia_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/uiautomationcore/uia_main.c b/dlls/uiautomationcore/uia_main.c index e4bb83a3fc5..9f257684333 100644 --- a/dlls/uiautomationcore/uia_main.c +++ b/dlls/uiautomationcore/uia_main.c @@ -248,7 +248,7 @@ HRESULT WINAPI hwnd_host_provider_get_HostRawElementProvider(IRawElementProvider return S_OK; } -IRawElementProviderSimpleVtbl hwnd_host_provider_vtbl = { +static const IRawElementProviderSimpleVtbl hwnd_host_provider_vtbl = { hwnd_host_provider_QueryInterface, hwnd_host_provider_AddRef, hwnd_host_provider_Release,
participants (1)
-
Alexandre Julliard