aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-notebook.c
diff options
context:
space:
mode:
authorXan Lopez <xan@src.gnome.org>2007-10-26 04:01:20 +0800
committerXan Lopez <xan@src.gnome.org>2007-10-26 04:01:20 +0800
commitcc62537ebba1ba9ab31cc3da32ddf51556045caa (patch)
tree0a052838c4cb61bd8290a4f2a40ed0903eb1e9fc /src/ephy-notebook.c
parentbe872c7f830e2789c9dd5968b2a66d7ddf06f60b (diff)
downloadgsoc2013-epiphany-cc62537ebba1ba9ab31cc3da32ddf51556045caa.tar
gsoc2013-epiphany-cc62537ebba1ba9ab31cc3da32ddf51556045caa.tar.gz
gsoc2013-epiphany-cc62537ebba1ba9ab31cc3da32ddf51556045caa.tar.bz2
gsoc2013-epiphany-cc62537ebba1ba9ab31cc3da32ddf51556045caa.tar.lz
gsoc2013-epiphany-cc62537ebba1ba9ab31cc3da32ddf51556045caa.tar.xz
gsoc2013-epiphany-cc62537ebba1ba9ab31cc3da32ddf51556045caa.tar.zst
gsoc2013-epiphany-cc62537ebba1ba9ab31cc3da32ddf51556045caa.zip
Port src/ to the new properties in EphyEmbed.
svn path=/trunk/; revision=7564
Diffstat (limited to 'src/ephy-notebook.c')
-rw-r--r--src/ephy-notebook.c4
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);