[Bug 17922] LiveZilla aborts due to unimplemented mshtml stubs

wine-bugs at winehq.org wine-bugs at winehq.org
Mon Mar 22 12:57:34 CDT 2010


http://bugs.winehq.org/show_bug.cgi?id=17922





--- Comment #5 from Louis Lenders <xerox_xerox2000 at yahoo.co.uk>  2010-03-22 12:57:34 ---
(In reply to comment #4)
> (In reply to comment #2)
> > HTMLLocation_get_href implementation is in GIT for some time now
> > (447e5d1fac0e870b188439a588e816d28bec5725)
> 
> 
> Still crashing in current git. Probably because of yet another unimplemented
> function in mshtml

Now crashes because of unimplmented HTMLDocument_execCommand
hack below is enough to get the app running














diff --git a/dlls/mshtml/htmldoc.c b/dlls/mshtml/htmldoc.c
index 12aa8c0..9d659ed 100644
--- a/dlls/mshtml/htmldoc.c
+++ b/dlls/mshtml/htmldoc.c
@@ -946,7 +946,7 @@ static HRESULT WINAPI
HTMLDocument_execCommand(IHTMLDocument
 {
     HTMLDocument *This = HTMLDOC_THIS(iface);
     FIXME("(%p)->(%s %x %p)\n", This, debugstr_w(cmdID), showUI, pfRet);
-    return E_NOTIMPL;
+    return 0;//E_NOTIMPL;
 }

 static HRESULT WINAPI HTMLDocument_execCommandShowHelp(IHTMLDocument2 *iface,
B
(END)

-- 
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.



More information about the wine-bugs mailing list