scrobj/tests: Fix a typo.
In addition to 27146e9947
.
Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com>
Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
4757bcc541
commit
c54ea2ac9e
|
@ -392,7 +392,7 @@ static HRESULT WINAPI ActiveScript_SetScriptSite(IActiveScript *iface, IActiveSc
|
||||||
IActiveScriptSiteWindow *window;
|
IActiveScriptSiteWindow *window;
|
||||||
IActiveScriptSiteDebug *debug;
|
IActiveScriptSiteDebug *debug;
|
||||||
IServiceProvider *service;
|
IServiceProvider *service;
|
||||||
ICanHandleException *canexpection;
|
ICanHandleException *canexception;
|
||||||
LCID lcid;
|
LCID lcid;
|
||||||
HRESULT hres;
|
HRESULT hres;
|
||||||
|
|
||||||
|
@ -415,7 +415,7 @@ static HRESULT WINAPI ActiveScript_SetScriptSite(IActiveScript *iface, IActiveSc
|
||||||
if (SUCCEEDED(hres))
|
if (SUCCEEDED(hres))
|
||||||
IActiveScriptSiteDebug_Release(debug);
|
IActiveScriptSiteDebug_Release(debug);
|
||||||
|
|
||||||
hres = IActiveScriptSite_QueryInterface(pass, &IID_ICanHandleException, (void**)&canexpection);
|
hres = IActiveScriptSite_QueryInterface(pass, &IID_ICanHandleException, (void**)&canexception);
|
||||||
ok(hres == E_NOINTERFACE, "Got IID_ICanHandleException interface: %08x\n", hres);
|
ok(hres == E_NOINTERFACE, "Got IID_ICanHandleException interface: %08x\n", hres);
|
||||||
|
|
||||||
hres = IActiveScriptSite_QueryInterface(pass, &IID_IServiceProvider, (void**)&service);
|
hres = IActiveScriptSite_QueryInterface(pass, &IID_IServiceProvider, (void**)&service);
|
||||||
|
|
Loading…
Reference in New Issue