From 6f21fe004400553fce63c4666153781bea286fdb Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Tue, 12 Nov 2002 23:25:33 +0000 Subject: [PATCH] Silence IShellLink::SetShowCmd for the case we support. --- dlls/shell32/shelllink.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dlls/shell32/shelllink.c b/dlls/shell32/shelllink.c index 64d585114b2..c26ac53292e 100644 --- a/dlls/shell32/shelllink.c +++ b/dlls/shell32/shelllink.c @@ -1512,7 +1512,12 @@ static HRESULT WINAPI IShellLinkW_fnSetShowCmd(IShellLinkW * iface, INT iShowCmd { _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface); - FIXME("(%p)->(showcmd=%x)\n",This, iShowCmd); + /* SW_SHOWNORMAL is the default ... The others would have + * to be somehow passed through the link file ... We can't + * do that currently. + */ + if (iShowCmd != SW_SHOWNORMAL) + FIXME("(%p)->(showcmd=%x)\n",This, iShowCmd); return NOERROR; }