http://bugs.winehq.org/show_bug.cgi?id=34923
Vijay Kamuju infyquest@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |infyquest@gmail.com
--- Comment #1 from Vijay Kamuju infyquest@gmail.com --- can you test with the below code fix (just a small hack), I dont have the app as well:
diff --git a/dlls/ieframe/webbrowser.c b/dlls/ieframe/webbrowser.c index 55f757f..a255dcc 100644 --- a/dlls/ieframe/webbrowser.c +++ b/dlls/ieframe/webbrowser.c @@ -303,7 +303,13 @@ static HRESULT WINAPI WebBrowser_Refresh2(IWebBrowser2 *iface, VARIANT *Level) { WebBrowser *This = impl_from_IWebBrowser2(iface); FIXME("(%p)->(%s)\n", This, debugstr_variant(Level)); - return E_NOTIMPL; + switch(V_I4(Level)) { + case 1: + case 3: + return refresh_document(&This->doc_host); + default : + return E_NOTIMPL; + } }
static HRESULT WINAPI WebBrowser_Stop(IWebBrowser2 *iface)