Commit f279b0cd authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Test return value of OnStateChange.

parent 11484a0f
......@@ -2073,7 +2073,9 @@ static HRESULT WINAPI ActiveScript_SetScriptState(IActiveScript *iface, SCRIPTST
}
hres = IActiveScriptSite_OnStateChange(site, (state = ss));
return hres;
ok(hres == S_OK, "OnStateChange failed: %08x\n", hres);
return S_OK;
}
static HRESULT WINAPI ActiveScript_GetScriptState(IActiveScript *iface, SCRIPTSTATE *pssState)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment