mshtml: Fixed a few typos.

This commit is contained in:
Thomas Mullaly 2011-02-15 20:22:58 -05:00 committed by Alexandre Julliard
parent 3cdd20f91d
commit 5624ece30d
1 changed files with 3 additions and 3 deletions

View File

@ -203,9 +203,9 @@ HRESULT set_moniker(HTMLDocument *This, IMoniker *mon, IBindCtx *pibc, nsChannel
hres = get_client_disp_property(This->doc_obj->client,
DISPID_AMBIENT_OFFLINEIFNOTCONNECTED, &offline);
if(SUCCEEDED(hres)) {
if(V_VT(&silent) != VT_BOOL)
WARN("V_VT(offline) = %d\n", V_VT(&silent));
else if(V_BOOL(&silent))
if(V_VT(&offline) != VT_BOOL)
WARN("V_VT(offline) = %d\n", V_VT(&offline));
else if(V_BOOL(&offline))
FIXME("offline == true\n");
}
}