From f91f6034ded85cb78101153d56ce45b4a108d4ac Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Fri, 24 Aug 2012 13:23:43 +0400 Subject: [PATCH] wshom.ocx/tests: Use proper method macro. --- dlls/wshom.ocx/tests/wshom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/wshom.ocx/tests/wshom.c b/dlls/wshom.ocx/tests/wshom.c index c70696c66dd..b2f60a84baa 100644 --- a/dlls/wshom.ocx/tests/wshom.c +++ b/dlls/wshom.ocx/tests/wshom.c @@ -64,7 +64,7 @@ static void test_wshshell(void) hr = IDispatch_QueryInterface(disp, &IID_IDispatchEx, (void**)&dispex); EXPECT_HR(hr, E_NOINTERFACE); - hr = IDispatch_QueryInterface(shell, &IID_IWshShell3, (void**)&sh3); + hr = IUnknown_QueryInterface(shell, &IID_IWshShell3, (void**)&sh3); EXPECT_HR(hr, S_OK); hr = IWshShell3_get_SpecialFolders(sh3, &coll);