Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/762cade3622a4295c7209307a4626773bd6bc7c0
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/762cade3622a4295c7209307a4626773bd6bc7c0
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/762cade3622a4295c7209307a4626773bd6bc7c0

The branch, master has been updated
       via  762cade3622a4295c7209307a4626773bd6bc7c0 (commit)
      from  081976105ad13c74c340034de6229eb9bdafcb7b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/netsurf.git/commitdiff/762cade3622a4295c7209307a4626773bd6bc7c0
commit 762cade3622a4295c7209307a4626773bd6bc7c0
Author: Michael Drake <[email protected]>
Commit: Michael Drake <[email protected]>

    Don't use hlcache_handle for URL, since hlcache_handle needs to go.

diff --git a/render/html_interaction.c b/render/html_interaction.c
index 15bf593..05afeeb 100644
--- a/render/html_interaction.c
+++ b/render/html_interaction.c
@@ -695,7 +695,7 @@ void html_mouse_action(struct content *c, struct 
browser_window *bw,
                        /* force download of link */
                        browser_window_go_post(bw, nsurl_access(url), 0, 0,
                                        false,
-                                       nsurl_access(hlcache_handle_get_url(h)),
+                                       nsurl_access(content_get_url(c)),
                                        true, true, 0);
 
                } else if (mouse & BROWSER_MOUSE_CLICK_2 &&
@@ -836,7 +836,7 @@ void html_mouse_action(struct content *c, struct 
browser_window *bw,
        case ACTION_GO:
                browser_window_go(browser_window_find_target(bw, target, mouse),
                                nsurl_access(url),
-                               nsurl_access(hlcache_handle_get_url(h)), true);
+                               nsurl_access(content_get_url(c)), true);
                break;
        case ACTION_NONE:
                break;


-----------------------------------------------------------------------

Summary of changes:
 render/html_interaction.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/render/html_interaction.c b/render/html_interaction.c
index 15bf593..05afeeb 100644
--- a/render/html_interaction.c
+++ b/render/html_interaction.c
@@ -695,7 +695,7 @@ void html_mouse_action(struct content *c, struct 
browser_window *bw,
                        /* force download of link */
                        browser_window_go_post(bw, nsurl_access(url), 0, 0,
                                        false,
-                                       nsurl_access(hlcache_handle_get_url(h)),
+                                       nsurl_access(content_get_url(c)),
                                        true, true, 0);
 
                } else if (mouse & BROWSER_MOUSE_CLICK_2 &&
@@ -836,7 +836,7 @@ void html_mouse_action(struct content *c, struct 
browser_window *bw,
        case ACTION_GO:
                browser_window_go(browser_window_find_target(bw, target, mouse),
                                nsurl_access(url),
-                               nsurl_access(hlcache_handle_get_url(h)), true);
+                               nsurl_access(content_get_url(c)), true);
                break;
        case ACTION_NONE:
                break;


-- 
NetSurf Browser

_______________________________________________
netsurf-commits mailing list
[email protected]
http://vlists.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to