diff options
Move all methods, signals and properties from EphyEmbed and EphyBaseEmbed to EphyWebView.
Those two embed classes are pretty much dummy leftovers, so it should be
easier to remove them now.
Diffstat (limited to 'src/ephy-location-action.c')
-rw-r--r-- | src/ephy-location-action.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ephy-location-action.c b/src/ephy-location-action.c index f2b8ca2cc..ad10ce7d7 100644 --- a/src/ephy-location-action.c +++ b/src/ephy-location-action.c @@ -22,6 +22,7 @@ #include "config.h" #include "ephy-embed-container.h" +#include "ephy-embed-utils.h" #include "ephy-history.h" #include "ephy-location-action.h" #include "ephy-location-entry.h" @@ -325,7 +326,7 @@ get_location_cb (EphyLocationEntry *entry, embed = ephy_embed_container_get_active_child (EPHY_EMBED_CONTAINER (priv->window)); - return g_strdup (ephy_embed_get_address (embed)); + return g_strdup (ephy_web_view_get_address (EPHY_GET_EPHY_WEB_VIEW_FROM_EMBED (embed))); } static char * @@ -337,7 +338,7 @@ get_title_cb (EphyLocationEntry *entry, embed = ephy_embed_container_get_active_child (EPHY_EMBED_CONTAINER (action->priv->window)); - return g_strdup (ephy_embed_get_title (embed)); + return g_strdup (ephy_web_view_get_title (EPHY_GET_EPHY_WEB_VIEW_FROM_EMBED (embed))); } static void |