mshtml/tests: Cast-qual warning fix.

This commit is contained in:
Paul Vriens 2007-01-12 14:26:05 +01:00 committed by Alexandre Julliard
parent c21d65cfb2
commit 6338caa9ed
1 changed files with 2 additions and 1 deletions

View File

@ -1803,11 +1803,12 @@ static void test_Load(IPersistMoniker *persist)
{
IBindCtx *bind;
HRESULT hres;
static WCHAR sz_html_clientsite_objectparam[] = SZ_HTML_CLIENTSITE_OBJECTPARAM;
test_readyState((IUnknown*)persist);
CreateBindCtx(0, &bind);
IBindCtx_RegisterObjectParam(bind, (LPOLESTR)SZ_HTML_CLIENTSITE_OBJECTPARAM,
IBindCtx_RegisterObjectParam(bind, sz_html_clientsite_objectparam,
(IUnknown*)&ClientSite);
SET_EXPECT(GetDisplayName);