http://bugs.winehq.org/show_bug.cgi?id=31399
--- Comment #6 from Jaroslav Fojtik fojtik@penguin.cz 2012-10-27 13:52:26 CDT --- Something is totally wrong in "navigate_url".
static HRESULT WINAPI HTMLDocument_put_URL(IHTMLDocument2 *iface, BSTR v) { HTMLDocument *This = impl_from_IHTMLDocument2(iface); + TRACE("(%p)->(%s)\n", This, debugstr_w(v));
return E_NOTIMPL; // <<<<< when I add this line, Pegasus Mail starts working.
+ + if(!This->window) { + FIXME("No window available\n"); + return E_FAIL; + } + + return navigate_url(This->window, v, This->window->url); }