Commit 8968f5fa authored by Ge van Geldorp's avatar Ge van Geldorp Committed by Alexandre Julliard

shdocvw/tests: Fix shdocvw:webbrowser test on some Windows boxes.

parent 6d238a6f
......@@ -279,8 +279,15 @@ static HRESULT WINAPI OleCommandTarget_Exec(IOleCommandTarget *iface, const GUID
default:
ok(0, "unexpected nCmdID %d\n", nCmdID);
}
}else if(IsEqualGUID(&CGID_ShellDocView, pguidCmdGroup)) {
switch(nCmdID) {
case 105: /* TODO */
return E_FAIL;
default:
ok(0, "unexpected nCmdID %d\n", nCmdID);
}
}else {
ok(0, "unepected pguidCmdGroup %s\n", debugstr_guid(pguidCmdGroup));
ok(0, "unexpected pguidCmdGroup %s\n", debugstr_guid(pguidCmdGroup));
}
return E_FAIL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment