diff options
author | Xan Lopez <xan@src.gnome.org> | 2007-11-16 23:03:10 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2007-11-16 23:03:10 +0800 |
commit | b7d6a7384621691379618b0be22bef0f58b30414 (patch) | |
tree | 378d3377f3290f3461b23f25349579077ff0bdb3 /src/ephy-toolbar.c | |
parent | 1b8bf4b88fb016020c822e5a9208a89ed8ebbdc4 (diff) | |
download | gsoc2013-epiphany-b7d6a7384621691379618b0be22bef0f58b30414.tar gsoc2013-epiphany-b7d6a7384621691379618b0be22bef0f58b30414.tar.gz gsoc2013-epiphany-b7d6a7384621691379618b0be22bef0f58b30414.tar.bz2 gsoc2013-epiphany-b7d6a7384621691379618b0be22bef0f58b30414.tar.lz gsoc2013-epiphany-b7d6a7384621691379618b0be22bef0f58b30414.tar.xz gsoc2013-epiphany-b7d6a7384621691379618b0be22bef0f58b30414.tar.zst gsoc2013-epiphany-b7d6a7384621691379618b0be22bef0f58b30414.zip |
And port all the callers in src/
svn path=/trunk/; revision=7695
Diffstat (limited to 'src/ephy-toolbar.c')
-rw-r--r-- | src/ephy-toolbar.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ephy-toolbar.c b/src/ephy-toolbar.c index 613a52463..0ca828670 100644 --- a/src/ephy-toolbar.c +++ b/src/ephy-toolbar.c @@ -22,6 +22,7 @@ #include "config.h" +#include "ephy-embed-container.h" #include "ephy-toolbar.h" #include "ephy-link.h" #include "ephy-go-action.h" @@ -175,7 +176,7 @@ sync_user_input_cb (EphyLocationAction *action, if (priv->updating_address) return; - embed = ephy_window_get_active_tab (priv->window); + embed = ephy_embed_container_get_active_child (EPHY_EMBED_CONTAINER (priv->window)); g_assert (EPHY_IS_EMBED (embed)); address = ephy_location_action_get_address (action); |