Zebediah Figura : mshtml: Open pages in the native browser in HlinkTarget_Navigate().

Alexandre Julliard julliard at winehq.org
Fri Mar 1 16:42:11 CST 2019


Module: wine
Branch: master
Commit: f29317dcc23e2154809b751b17e65190a7e4d8f2
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=f29317dcc23e2154809b751b17e65190a7e4d8f2

Author: Zebediah Figura <z.figura12 at gmail.com>
Date:   Wed Feb 27 23:45:41 2019 -0600

mshtml: Open pages in the native browser in HlinkTarget_Navigate().

This matches native Windows behaviour as well, as demonstrated by
running the interactive hlink:hlink tests.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=44423
Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
Signed-off-by: Jacek Caban <jacek at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/mshtml/persist.c | 16 ++++++++++++++--
 1 file changed, 14 insertions(+), 2 deletions(-)

diff --git a/dlls/mshtml/persist.c b/dlls/mshtml/persist.c
index b82750a..0607306 100644
--- a/dlls/mshtml/persist.c
+++ b/dlls/mshtml/persist.c
@@ -30,6 +30,7 @@
 #include "shlguid.h"
 #include "idispids.h"
 #include "mimeole.h"
+#include "shellapi.h"
 
 #define NO_SHLWAPI_REG
 #include "shlwapi.h"
@@ -1187,8 +1188,19 @@ static HRESULT WINAPI HlinkTarget_Navigate(IHlinkTarget *iface, DWORD grfHLNF, L
     if(pwzJumpLocation)
         FIXME("JumpLocation not supported\n");
 
-    if(!This->doc_obj->client)
-        return navigate_new_window(This->window, This->window->uri, NULL, NULL, NULL);
+    if(!This->doc_obj->client) {
+        static const WCHAR szOpen[] = {'o','p','e','n',0};
+        HRESULT hres;
+        BSTR uri;
+
+        hres = IUri_GetAbsoluteUri(This->window->uri, &uri);
+        if (FAILED(hres))
+            return hres;
+
+        ShellExecuteW(NULL, szOpen, uri, NULL, NULL, SW_SHOW);
+        SysFreeString(uri);
+        return S_OK;
+    }
 
     return IOleObject_DoVerb(&This->IOleObject_iface, OLEIVERB_SHOW, NULL, NULL, -1, NULL, NULL);
 }




More information about the wine-cvs mailing list