From 80b65d3e35f1744f1799e816f0052a6949082a6a Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Sun, 10 Jun 2007 11:43:53 +0200 Subject: [PATCH] mshtml: Don't check out variant type in exec_fontname. --- dlls/mshtml/editor.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/dlls/mshtml/editor.c b/dlls/mshtml/editor.c index 03cc546faf8..7bebe3d3bd3 100644 --- a/dlls/mshtml/editor.c +++ b/dlls/mshtml/editor.c @@ -607,11 +607,6 @@ static HRESULT exec_fontname(HTMLDocument *This, DWORD cmdexecopt, VARIANT *in, DWORD len; nsresult nsres; - if(V_VT(out) != VT_BSTR) { - FIXME("Unsupported vt=%d\n", V_VT(out)); - return E_INVALIDARG; - } - nsparam = create_nscommand_params(); nsres = get_ns_command_state(This->nscontainer, NSCMD_FONTFACE, nsparam);