diff options
author | Xan Lopez <xan@gnome.org> | 2009-05-31 00:21:03 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2009-05-31 00:21:03 +0800 |
commit | 3191345e4aafa9ae92c676468e588b6d1df2862c (patch) | |
tree | f2cd7b8ab212fca19fa745966156ce58c1d31384 /src/ephy-window.c | |
parent | d94e4eca61821f956c67e6a519c36be083dd794d (diff) | |
download | gsoc2013-epiphany-3191345e4aafa9ae92c676468e588b6d1df2862c.tar.gz gsoc2013-epiphany-3191345e4aafa9ae92c676468e588b6d1df2862c.tar.zst gsoc2013-epiphany-3191345e4aafa9ae92c676468e588b6d1df2862c.zip |
Move method to copy history between embeds/views to EphyWebView from EphyEmbed.
Just part of the gradual progress to get rid of the Embed interface.
Diffstat (limited to 'src/ephy-window.c')
-rw-r--r-- | src/ephy-window.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c index 68b0573ba..3f0c4f497 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -57,6 +57,7 @@ #include "ephy-embed-persist.h" #include "ephy-embed-factory.h" #include "ephy-location-entry.h" +#include "ephy-web-view.h" #include <string.h> #include <glib/gi18n.h> @@ -2264,11 +2265,9 @@ open_link_in_new (EphyWindow *window, if (dest) { - ephy_embed_shistory_copy (embed, - dest, - TRUE, /* back history */ - FALSE, /* forward history */ - FALSE); /* current index */ + ephy_web_view_copy_back_history (EPHY_WEB_VIEW (EPHY_GET_WEBKIT_WEB_VIEW_FROM_EMBED (embed)), + EPHY_WEB_VIEW (EPHY_GET_WEBKIT_WEB_VIEW_FROM_EMBED (dest))); + return TRUE; } |