diff options
author | Xan Lopez <xan@src.gnome.org> | 2007-10-26 04:01:20 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2007-10-26 04:01:20 +0800 |
commit | cc62537ebba1ba9ab31cc3da32ddf51556045caa (patch) | |
tree | 0a052838c4cb61bd8290a4f2a40ed0903eb1e9fc /src/ephy-tabs-menu.c | |
parent | be872c7f830e2789c9dd5968b2a66d7ddf06f60b (diff) | |
download | gsoc2013-epiphany-cc62537ebba1ba9ab31cc3da32ddf51556045caa.tar.gz 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-tabs-menu.c')
-rw-r--r-- | src/ephy-tabs-menu.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ephy-tabs-menu.c b/src/ephy-tabs-menu.c index d580c4e32..5645c111b 100644 --- a/src/ephy-tabs-menu.c +++ b/src/ephy-tabs-menu.c @@ -26,6 +26,7 @@ #include "ephy-marshal.h" #include "ephy-shell.h" #include "ephy-debug.h" +#include "ephy-embed-utils.h" #include <glib/gi18n.h> #include <gtk/gtklabel.h> @@ -123,7 +124,7 @@ sync_tab_title (EphyTab *tab, { const char *title; - title = ephy_embed_get_title_composite (ephy_tab_get_embed (tab)); + title = ephy_embed_utils_get_title_composite (ephy_tab_get_embed (tab)); g_object_set (action, "label", title, NULL); } |