diff options
Diffstat (limited to 'src/ephy-navigation-action.c')
-rw-r--r-- | src/ephy-navigation-action.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ephy-navigation-action.c b/src/ephy-navigation-action.c index 094b5adc8..d19cf21fb 100644 --- a/src/ephy-navigation-action.c +++ b/src/ephy-navigation-action.c @@ -285,7 +285,7 @@ build_up_menu (EphyNavigationAction *action) history = EPHY_HISTORY (ephy_embed_shell_get_global_history (embed_shell)); - list = ephy_web_view_get_go_up_list (EPHY_GET_EPHY_WEB_VIEW_FROM_EMBED (embed)); + list = ephy_web_view_get_go_up_list (ephy_embed_get_web_view (embed)); for (l = list; l != NULL; l = l->next) { @@ -430,7 +430,7 @@ ephy_navigation_action_activate (GtkAction *gtk_action) { GSList *up_list; - up_list = ephy_web_view_get_go_up_list (EPHY_GET_EPHY_WEB_VIEW_FROM_EMBED (embed)); + up_list = ephy_web_view_get_go_up_list (ephy_embed_get_web_view (embed)); ephy_link_open (EPHY_LINK (action), up_list->data, NULL, |