Commit 014e06b9 authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

ieframe/tests: Use todo_wine_if() in tests.

parent 846155f1
......@@ -1654,9 +1654,7 @@ static HRESULT WINAPI DocHostUIHandler_GetExternal(IDocHostUIHandler2 *iface, ID
static HRESULT WINAPI DocHostUIHandler_TranslateUrl(IDocHostUIHandler2 *iface, DWORD dwTranslate,
OLECHAR *pchURLIn, OLECHAR **ppchURLOut)
{
if(is_downloading && !(dwl_flags & DWL_EXPECT_BEFORE_NAVIGATE))
todo_wine CHECK_EXPECT(TranslateUrl);
else
todo_wine_if(is_downloading && !(dwl_flags & DWL_EXPECT_BEFORE_NAVIGATE))
CHECK_EXPECT(TranslateUrl);
return E_NOTIMPL;
}
......
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