aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-window.c
diff options
context:
space:
mode:
authorXan Lopez <xan@gnome.org>2009-06-02 23:56:28 +0800
committerXan Lopez <xan@gnome.org>2009-06-03 00:08:50 +0800
commita62be2bb0ad051a60b99b02e39c58f96dd5b3b9e (patch)
treec551691573045b474c0cb894cc98ba4dbd5fc6bb /src/ephy-window.c
parent9f4b66ef75418ea4f51179432f4d5aeca4e586ed (diff)
downloadgsoc2013-epiphany-a62be2bb0ad051a60b99b02e39c58f96dd5b3b9e.tar
gsoc2013-epiphany-a62be2bb0ad051a60b99b02e39c58f96dd5b3b9e.tar.gz
gsoc2013-epiphany-a62be2bb0ad051a60b99b02e39c58f96dd5b3b9e.tar.bz2
gsoc2013-epiphany-a62be2bb0ad051a60b99b02e39c58f96dd5b3b9e.tar.lz
gsoc2013-epiphany-a62be2bb0ad051a60b99b02e39c58f96dd5b3b9e.tar.xz
gsoc2013-epiphany-a62be2bb0ad051a60b99b02e39c58f96dd5b3b9e.tar.zst
gsoc2013-epiphany-a62be2bb0ad051a60b99b02e39c58f96dd5b3b9e.zip
Move load_url method to EphyWebView.
Diffstat (limited to 'src/ephy-window.c')
-rw-r--r--src/ephy-window.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c
index 3f0c4f497..2df66b244 100644
--- a/src/ephy-window.c
+++ b/src/ephy-window.c
@@ -3598,7 +3598,7 @@ ephy_window_open_link (EphyLink *link,
}
else
{
- ephy_embed_load_url (embed, address);
+ ephy_web_view_load_url (EPHY_WEB_VIEW (EPHY_GET_WEBKIT_WEB_VIEW_FROM_EMBED (embed)), address);
if (address == NULL || address[0] == '\0' || strcmp (address, "about:blank") == 0)
{
@@ -3990,7 +3990,7 @@ real_get_active_tab (EphyWindow *window, int page_num)
* @url: the url to load
*
* Loads a new url in the active tab of @window.
- * Unlike ephy_embed_load_url(), this function activates
+ * Unlike ephy_web_view_load_url(), this function activates
* the embed.
*
**/