From ef16e9f82b3cdee2d44e2423beb69547c82db90c Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Mon, 17 Dec 2007 01:38:41 +0100 Subject: [PATCH] shdocvw: Ignore Exec(CGID_Explorer, 66) calls in tests. --- dlls/shdocvw/tests/webbrowser.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/shdocvw/tests/webbrowser.c b/dlls/shdocvw/tests/webbrowser.c index 4205a03aa2a..f5e22ca3d28 100644 --- a/dlls/shdocvw/tests/webbrowser.c +++ b/dlls/shdocvw/tests/webbrowser.c @@ -186,6 +186,8 @@ static HRESULT WINAPI OleCommandTarget_Exec(IOleCommandTarget *iface, const GUID switch(nCmdID) { case 24: return E_FAIL; /* TODO */ + case 66: + return E_FAIL; /* TODO */ default: ok(0, "unexpected nCmdID %d\n", nCmdID); }