diff options
Diffstat (limited to 'src/ephy-notebook.c')
-rw-r--r-- | src/ephy-notebook.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c index 5cdbebc42..5eaeaf43a 100644 --- a/src/ephy-notebook.c +++ b/src/ephy-notebook.c @@ -555,7 +555,7 @@ sync_icon (EphyTab *tab, GParamSpec *pspec, GtkImage *icon) { - gtk_image_set_from_pixbuf (icon, ephy_tab_get_icon (tab)); + gtk_image_set_from_pixbuf (icon, ephy_embed_get_icon (ephy_tab_get_embed (tab))); } static void @@ -563,7 +563,7 @@ sync_label (EphyTab *tab, GParamSpec *pspec, GtkWidget *label) { const char *title; - title = ephy_tab_get_title (ephy_tab_get_embed (tab)); + title = ephy_embed_get_title (ephy_tab_get_embed (tab)); gtk_label_set_text (GTK_LABEL (label), title); |